Commit 4bc6814c by dreamer6680 Committed by GitHub

fix:useeffect cannot returm jsx (#5311)

parent 51268f11
...@@ -15,10 +15,6 @@ import { ...@@ -15,10 +15,6 @@ import {
} from 'fumadocs-ui/components/dialog/search'; } from 'fumadocs-ui/components/dialog/search';
import { useI18n } from 'fumadocs-ui/contexts/i18n'; 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) { 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'); throw new Error('NEXT_PUBLIC_SEARCH_APPID and NEXT_PUBLIC_SEARCH_APPKEY are not set');
} }
......
...@@ -41,5 +41,5 @@ export default function NotFound() { ...@@ -41,5 +41,5 @@ export default function NotFound() {
redirect('/docs/introduction'); redirect('/docs/introduction');
}, [pathname]); }, [pathname]);
return; return <></>;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment