We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd09a74 commit bc350bcCopy full SHA for bc350bc
app/src/components/ContextAPIManager/CreateTab/components/AddContextForm.tsx
@@ -26,7 +26,10 @@ const AddContextForm = ({
26
const color = isDarkMode ? 'white' : 'black';
27
28
const handleClick = () => {
29
- if (contextInput === '' || contextInput === null) return;
+ if (contextInput === '' || contextInput === null) {
30
+ window.alert('must enter context name');
31
+ return;
32
+ }
33
handleClickSelectContext();
34
};
35
0 commit comments