Prettier format pending files
This commit is contained in:
parent
d2b5d14e3b
commit
9cb7fe3836
2 changed files with 13 additions and 6 deletions
|
|
@ -66,10 +66,7 @@ const App = () => (
|
|||
<Route path="/profile/me" element={<Profile />} />
|
||||
|
||||
<Route path="/profiles" element={<ProfilesDirectory />} />
|
||||
<Route
|
||||
path="/profiles/me"
|
||||
element={<LegacyPassportRedirect />}
|
||||
/>
|
||||
<Route path="/profiles/me" element={<LegacyPassportRedirect />} />
|
||||
<Route
|
||||
path="/profiles/:id"
|
||||
element={<LegacyPassportRedirect />}
|
||||
|
|
|
|||
|
|
@ -11,7 +11,14 @@ import {
|
|||
DropdownMenuTrigger,
|
||||
} from "@/components/ui/dropdown-menu";
|
||||
import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar";
|
||||
import { User, Settings, LogOut, Bell, Sparkles, UserCircle } from "lucide-react";
|
||||
import {
|
||||
User,
|
||||
Settings,
|
||||
LogOut,
|
||||
Bell,
|
||||
Sparkles,
|
||||
UserCircle,
|
||||
} from "lucide-react";
|
||||
|
||||
interface LayoutProps {
|
||||
children: React.ReactNode;
|
||||
|
|
@ -177,7 +184,10 @@ export default function Layout({ children }: LayoutProps) {
|
|||
</Link>
|
||||
</DropdownMenuItem>
|
||||
<DropdownMenuItem asChild>
|
||||
<Link to="/profile/me#settings" className="cursor-pointer">
|
||||
<Link
|
||||
to="/profile/me#settings"
|
||||
className="cursor-pointer"
|
||||
>
|
||||
<Settings className="mr-2 h-4 w-4" />
|
||||
Settings
|
||||
</Link>
|
||||
|
|
|
|||
Loading…
Reference in a new issue