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 396fe26 commit 0590636Copy full SHA for 0590636
components/webui/client/src/pages/SearchPage/SearchControls/index.tsx
@@ -32,7 +32,7 @@ const handleSubmit = (ev: React.FormEvent<HTMLFormElement>) => {
32
const SearchControls = () => {
33
/* eslint-disable-next-line no-warning-comments */
34
// TODO: Remove flag and related logic when the new guide UI is fully implemented.
35
- const isGuidedEnabled = "true" === import.meta.env.VITE_GUIDED_DEV;
+ const isGuidedEnabled = "true" === import.meta.env[`VITE_GUIDED_DEV`];
36
37
return (
38
<form onSubmit={handleSubmit}>
0 commit comments