diff --git a/apps/core/src/pages/404.tsx b/apps/core/src/pages/404.tsx index 23bff79a78..9e23a54581 100644 --- a/apps/core/src/pages/404.tsx +++ b/apps/core/src/pages/404.tsx @@ -1,8 +1,8 @@ import { displayFlex, styled } from '@affine/component'; -import { WorkspaceSubPath } from '@affine/env/workspace'; import { useAFFiNEI18N } from '@affine/i18n/hooks'; import { Button } from '@toeverything/components/button'; import type { ReactElement } from 'react'; +import { useCallback } from 'react'; import { useNavigateHelper } from '../hooks/use-navigate-helper'; @@ -26,22 +26,15 @@ export const StyledContainer = styled('div')(() => { export const NotFoundPage = () => { const t = useAFFiNEI18N(); - const { jumpToSubPath, jumpToIndex } = useNavigateHelper(); + const { jumpToIndex } = useNavigateHelper(); + const handleBackButtonClick = useCallback(() => jumpToIndex(), [jumpToIndex]); + return ( 404

{t['com.affine.notFoundPage.title']()}

-