Skip to content

Commit 301271e

Browse files
Disable selection on loader
1 parent cf332a2 commit 301271e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/AssistantView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ class AssistantView extends React.Component<Props, State> implements SessionCont
154154
) }
155155
</div>
156156
} else if (sessionState == 'initializing' || sessionState == 'waiting_for_data' || sessionState == 'validating_data') {
157-
return <div style={{ width: '100%', height: '100%', display: 'flex', flexDirection: 'column', justifyContent: 'center', alignItems: 'center' }}>
157+
return <div style={{ width: '100%', height: '100%', display: 'flex', flexDirection: 'column', justifyContent: 'center', alignItems: 'center', userSelect: 'none' }}>
158158
<img src='https://superluminal.dev/images/ai.webp' width="64px" height="64px" draggable={false} />
159159
<div style={{ fontSize: '20px', fontWeight: 600, color: '#000000', marginTop: '8px' }}>Loading</div>
160160
</div>

0 commit comments

Comments
 (0)