chore: update user settings

This commit is contained in:
Steven
2023-09-12 22:03:06 +08:00
parent 8992d48b3e
commit 908f95772d
4 changed files with 10 additions and 13 deletions

View File

@ -74,8 +74,8 @@ const Home: React.FC = () => {
loading
</div>
) : orderedShortcutList.length === 0 ? (
<div className="py-16 w-full flex flex-col justify-center items-center">
<Icon.PackageOpen className="w-16 h-auto text-gray-400" />
<div className="py-16 w-full flex flex-col justify-center items-center text-gray-400">
<Icon.PackageOpen className="w-16 h-auto" strokeWidth="1" />
<p className="mt-4">No shortcuts found.</p>
</div>
) : (

View File

@ -18,10 +18,6 @@ const Setting: React.FC = () => {
{isAdmin && (
<>
<Divider />
<div>
<h2 className="text-2xl font-bold">Workspace setting</h2>
<p className="text-gray-500 text-sm">Manage your workspace.</p>
</div>
<MemberSection />
<WorkspaceSection />
</>