mirror of
https://github.com/labring/FastGPT.git
synced 2025-10-14 15:11:13 +00:00
fix:useeffect cannot returm jsx (#5311)
This commit is contained in:
@@ -15,10 +15,6 @@ import {
|
||||
} from 'fumadocs-ui/components/dialog/search';
|
||||
import { useI18n } from 'fumadocs-ui/contexts/i18n';
|
||||
|
||||
console.log({
|
||||
NEXT_PUBLIC_SEARCH_APPID: process.env.NEXT_PUBLIC_SEARCH_APPID,
|
||||
NEXT_PUBLIC_SEARCH_APPKEY: process.env.NEXT_PUBLIC_SEARCH_APPKEY
|
||||
})
|
||||
if (!process.env.NEXT_PUBLIC_SEARCH_APPID || !process.env.NEXT_PUBLIC_SEARCH_APPKEY) {
|
||||
throw new Error('NEXT_PUBLIC_SEARCH_APPID and NEXT_PUBLIC_SEARCH_APPKEY are not set');
|
||||
}
|
||||
|
@@ -41,5 +41,5 @@ export default function NotFound() {
|
||||
redirect('/docs/introduction');
|
||||
}, [pathname]);
|
||||
|
||||
return;
|
||||
return <></>;
|
||||
}
|
||||
|
Reference in New Issue
Block a user