diff --git a/libs/components/account/src/login/fs.tsx b/libs/components/account/src/login/fs.tsx index bc51a90876..99f1252db7 100644 --- a/libs/components/account/src/login/fs.tsx +++ b/libs/components/account/src/login/fs.tsx @@ -1,5 +1,5 @@ /* eslint-disable filename-rules/match */ -import { useState } from 'react'; +import { useEffect, useState } from 'react'; import { LogoImg } from '@toeverything/components/common'; import { @@ -46,6 +46,13 @@ const requestPermission = async (workspace: string) => { export const FileSystem = () => { const onSelected = useLocalTrigger(); const [error, setError] = useState(false); + + useEffect(() => { + if (process.env['NX_E2E']) { + onSelected(); + } + }, []); + return (