fix: Remove any extra Spaces in the title (#15841)

This commit is contained in:
Yi Feng
2025-03-14 17:12:29 +08:00
committed by GitHub
parent bf9b572bc3
commit 1a6298b6ea
4 changed files with 4 additions and 2 deletions

View File

@@ -24,7 +24,7 @@ const Explore: FC<IExploreProps> = ({
const [installedApps, setInstalledApps] = useState<InstalledApp[]>([])
useEffect(() => {
document.title = `${t('explore.title')} - Dify`;
document.title = `${t('explore.title')} - Dify`;
(async () => {
const { accounts } = await fetchMembers({ url: '/workspaces/current/members', params: {} })
if (!accounts)