Skip to content

Commit 6941d58

Browse files
committed
fix: not supported showing condition
1 parent 1ee5c1f commit 6941d58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/features/editor/views/GraphView/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ export const GraphView = ({ isWidget = false }: GraphProps) => {
170170

171171
return (
172172
<Box pos="relative" h="100%" w="100%">
173-
{!aboveSupportedLimit && <NotSupported />}
173+
{aboveSupportedLimit && <NotSupported />}
174174
<LoadingOverlay visible={debouncedLoading} />
175175
{!isWidget && <OptionsMenu />}
176176
{!isWidget && <SecureInfo />}

0 commit comments

Comments
 (0)