Skip to content

Commit 92077ce

Browse files
committed
Fix lint errors
1 parent d37c808 commit 92077ce

File tree

5 files changed

+3
-8
lines changed

5 files changed

+3
-8
lines changed

react-native-expo/components/Icon/index.stories.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { CheckCircle, Home, Coins } from 'lucide-react-native';
2-
import { Meta, StoryObj } from '@storybook/react/*';
2+
import { Meta, StoryObj } from '@storybook/react';
33
import Icon from '.';
44
import dripsyTheme from '@/utils/dripsyTheme';
55

react-native-expo/components/Text.stories.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Its component is the built-in `<Text />` component from Dripsy, so there is
44
* no component file separate from this story file.
55
*/
6-
import { Meta, StoryObj } from '@storybook/react/*';
6+
import { Meta, StoryObj } from '@storybook/react';
77
import dripsyTheme from '@/utils/dripsyTheme';
88
import { Text } from 'dripsy';
99

react-native-expo/modules/penumbra-sdk-module/index.ts

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import { NativeModulesProxy, EventEmitter, Subscription } from 'expo-modules-core';
2-
31
// Import the native module. On web, it will be resolved to PenumbraSdkModule.web.ts
42
// and on native platforms to PenumbraSdkModule.ts
53
import PenumbraSdkModule from './src/PenumbraSdkModule';
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
// Fake module for web
2-
export default {
3-
};
2+
export default {};

react-native-expo/store/balances.ts

-2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,4 @@ export const balancesSlice = createSlice({
1717
reducers: {},
1818
});
1919

20-
export const {} = balancesSlice.actions;
21-
2220
export default balancesSlice.reducer;

0 commit comments

Comments
 (0)