Merge pull request #840 from toeverything/bugfix/public-workspace-error

fix: delete useless tips
This commit is contained in:
DarkSky 2023-02-06 22:15:11 +08:00 committed by GitHub
commit 3daf8c00a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,7 +14,6 @@ export const PageListEmpty = (props: { listType?: string }) => {
{listType === 'all' && <p>{t('emptyAllPages')}</p>}
{listType === 'favorite' && <p>{t('emptyFavourite')}</p>}
{listType === 'trash' && <p>{t('emptyTrash')}</p>}
<p>{t('still designed')}</p>
</div>
);
};