Skip to content

Commit 75ec36b

Browse files
chore(ui): lint
1 parent d802f8e commit 75ec36b

File tree

1 file changed

+2
-2
lines changed
  • invokeai/frontend/web/src/common/components/Picker

1 file changed

+2
-2
lines changed

invokeai/frontend/web/src/common/components/Picker/Picker.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ const DefaultGroupComponent = typedMemo(
5858
);
5959
DefaultGroupComponent.displayName = 'DefaultGroupComponent';
6060

61-
export const NoOptionsFallbackWrapper = typedMemo(({ children }: PropsWithChildren) => {
61+
const NoOptionsFallbackWrapper = typedMemo(({ children }: PropsWithChildren) => {
6262
const { t } = useTranslation();
6363
return (
6464
<Flex w="full" h="full" alignItems="center" justifyContent="center">
@@ -72,7 +72,7 @@ export const NoOptionsFallbackWrapper = typedMemo(({ children }: PropsWithChildr
7272
});
7373
NoOptionsFallbackWrapper.displayName = 'NoOptionsFallbackWrapper';
7474

75-
export const NoMatchesFallbackWrapper = typedMemo(({ children }: PropsWithChildren) => {
75+
const NoMatchesFallbackWrapper = typedMemo(({ children }: PropsWithChildren) => {
7676
const { t } = useTranslation();
7777
return (
7878
<Flex w="full" h="full" alignItems="center" justifyContent="center">

0 commit comments

Comments
 (0)