File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ interface SearchBarProps {
16
16
characters ?: { name : string ; image : string } [ ]
17
17
}
18
18
19
- export default function SearchBar ( {
19
+ export function SearchBar ( {
20
20
recentSearches = [ ] ,
21
21
characters = [ ]
22
22
} : SearchBarProps ) {
Original file line number Diff line number Diff line change
1
+ export * from "./SearchBar"
Original file line number Diff line number Diff line change 1
1
"use client"
2
2
3
3
import { useAuth } from "@/app/context/AuthContext"
4
- import SearchBar from "@/components/Search/SearchBar"
5
4
import { Sidebar } from "@/components/layouts/AppLayout/Sidebar/Sidebar"
6
5
import { Button } from "@mav/ui/components/buttons"
7
6
import { MyArtverseIcon } from "@mav/ui/icons"
@@ -10,6 +9,7 @@ import { useState } from "react"
10
9
import { LuMenu } from "react-icons/lu"
11
10
import { ActionsLoggedIn } from "./ActionsLoggedIn"
12
11
import { ActionsLoggedOut } from "./ActionsLoggedOut"
12
+ import { SearchBar } from "@/components/Search"
13
13
14
14
export function Navbar ( ) {
15
15
const { user, isLoading } = useAuth ( )
You can’t perform that action at this time.
0 commit comments