Skip to content

Commit 0590636

Browse files
author
Marco
committed
fix build error
1 parent 396fe26 commit 0590636

File tree

1 file changed

+1
-1
lines changed
  • components/webui/client/src/pages/SearchPage/SearchControls

1 file changed

+1
-1
lines changed

components/webui/client/src/pages/SearchPage/SearchControls/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const handleSubmit = (ev: React.FormEvent<HTMLFormElement>) => {
3232
const SearchControls = () => {
3333
/* eslint-disable-next-line no-warning-comments */
3434
// TODO: Remove flag and related logic when the new guide UI is fully implemented.
35-
const isGuidedEnabled = "true" === import.meta.env.VITE_GUIDED_DEV;
35+
const isGuidedEnabled = "true" === import.meta.env[`VITE_GUIDED_DEV`];
3636

3737
return (
3838
<form onSubmit={handleSubmit}>

0 commit comments

Comments
 (0)