Skip to content

Commit

Permalink
refactor: change reset password to workspaces placeholder
Browse files Browse the repository at this point in the history
  • Loading branch information
kriptonian1 committed Apr 30, 2024
1 parent b27d325 commit 92ceb75
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion apps/workspace/app/(main)/settings/@profile/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
'use client'
import React, { useState } from 'react'
import { Input } from '@/components/ui/input'
import { Label } from '@/components/ui/label'
import { Separator } from '@/components/ui/separator'
import { Button } from '@/components/ui/button'

Expand Down
6 changes: 3 additions & 3 deletions apps/workspace/src/components/shared/navbar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@
import { Search } from 'lucide-react'
import { useEffect, useState } from 'react'
import { usePathname } from 'next/navigation'
import { DropdownSVG } from '@public/svg/shared'
import Link from 'next/link'
import SearchModel from './searchModel'
import { DropdownSVG } from '@public/svg/shared'
import {
DropdownMenu,
DropdownMenuContent,
Expand All @@ -16,6 +15,7 @@ import {
} from '@/components/ui/dropdown-menu'
import { Avatar, AvatarFallback, AvatarImage } from '@/components/ui/avatar'
import LineTab from '@/components/ui/line-tab'
import SearchModel from './searchModel'

function Navbar(): React.JSX.Element {
const [isOpen, setIsOpen] = useState<boolean>(false)
Expand Down Expand Up @@ -91,7 +91,7 @@ function Navbar(): React.JSX.Element {
<Link href="/settings?tab=workspace">
<DropdownMenuItem>Workspace Settings</DropdownMenuItem>
</Link>

<DropdownMenuSeparator />
<DropdownMenuItem>Log out</DropdownMenuItem>
</DropdownMenuContent>
Expand Down

0 comments on commit 92ceb75

Please sign in to comment.