Skip to content

Commit 45dfc60

Browse files
committed
fix: lint issues
1 parent 8904b39 commit 45dfc60

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/SampleApp/src/components/MessageSearch/MessageSearchList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export const MessageSearchList: React.FC<MessageSearchListProps> = React.forward
7272
} = props;
7373
const {
7474
theme: {
75-
colors: { black, border, grey, white_snow },
75+
colors: { black, grey, white_snow },
7676
semantics,
7777
},
7878
} = useTheme();

examples/SampleApp/src/components/UserInfoOverlay.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export const UserInfoOverlay = (props: UserInfoOverlayProps) => {
105105

106106
const {
107107
theme: {
108-
colors: { accent_red, black, border, grey, white },
108+
colors: { accent_red, black, grey, white },
109109
semantics,
110110
},
111111
} = useTheme();

examples/SampleApp/src/screens/UserSelectorScreen.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ type Props = {
9090
export const UserSelectorScreen: React.FC<Props> = ({ navigation }) => {
9191
const {
9292
theme: {
93-
colors: { black, border, grey, grey_gainsboro, grey_whisper, white_snow },
93+
colors: { black, grey, grey_gainsboro, grey_whisper, white_snow },
9494
semantics,
9595
},
9696
} = useTheme();

0 commit comments

Comments
 (0)