Skip to content

Commit

Permalink
chore: lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
eikeland committed Dec 20, 2023
1 parent 8088184 commit f8ed0bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/cli/src/bin/dev-portal/PersonSideSheet/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ export const PersonSideSheet = ({ azureId, isOpen, onClose }: PersonSideSheetPro
return Comp;
}, [currentSheet]);

const navigateCallback = useCallback((sheet: string) => {
console.log('Navigate to sheet:', sheet);
const navigateCallback = useCallback(
(sheet: string) => {
setCurrentSheet(sheet ?? 'default');
},
[setCurrentSheet],
Expand Down
2 changes: 1 addition & 1 deletion packages/modules/feature-flag/src/plugins/cgi/plugin.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { INavigationProvider } from '@equinor/fusion-framework-module-navigation';
import type { AssertFeatureFlag, CgiFeatureFlagPlugin, ICgiPluginClient, Path } from './types';
import { Subject, Subscription, forkJoin, from, of } from 'rxjs';
import { concatMap, map, reduce, takeUntil, withLatestFrom } from 'rxjs/operators';
import { concatMap, map, reduce, takeUntil } from 'rxjs/operators';
import { FeatureFlag, IFeatureFlag } from '../../FeatureFlag';
import { IFeatureFlagProvider } from '../../FeatureFlagProvider';
import { normalizeFlags } from '../../utils/normalize-flags';
Expand Down

0 comments on commit f8ed0bd

Please sign in to comment.