Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
m-rgba committed Dec 23, 2024
1 parent 5db00f5 commit 57e6318
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion weave-js/src/common/util/browser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ export const isMac = () => {
return (
checkString(platform) || checkString(userAgent) || checkString(appVersion)
);
};
};
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import {
import {MOON_400, MOON_500} from '@wandb/weave/common/css/color.styles';
import {useOrgName} from '@wandb/weave/common/hooks/useOrganization';
import {useViewerUserInfo2} from '@wandb/weave/common/hooks/useViewerUserInfo';
import {isMac} from '@wandb/weave/common/util/browser';
import {Radio, Switch} from '@wandb/weave/components';
import {Button} from '@wandb/weave/components/Button';
import {CodeEditor} from '@wandb/weave/components/CodeEditor';
Expand All @@ -35,7 +36,6 @@ import {
import {CallFilter} from '../wfReactInterface/wfDataModelHooksInterface';
import {WFHighLevelCallFilter} from './callsTableFilter';
import {useFilterSortby} from './callsTableQuery';
import {isMac} from '@wandb/weave/common/util/browser';

const MAX_EXPORT = 10_000;

Expand Down Expand Up @@ -707,4 +707,4 @@ export const PaginationButtons = () => {
</Box>
</Box>
);
};
};
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import {Box, Divider} from '@mui/material';
import {MOON_250, MOON_500} from '@wandb/weave/common/css/color.styles';
import {isMac} from '@wandb/weave/common/util/browser';
import {Button} from '@wandb/weave/components/Button';
import React, {useState} from 'react';
import {isMac} from '@wandb/weave/common/util/browser';

import {StyledTextArea} from '../StyledTextarea';
import {PlaygroundMessageRole} from '../types';

Expand Down

0 comments on commit 57e6318

Please sign in to comment.