File tree Expand file tree Collapse file tree 3 files changed +5
-19
lines changed
app/(content)/search-user Expand file tree Collapse file tree 3 files changed +5
-19
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ export const SearchPageComponent = () => {
133
133
< >
134
134
{ /* User Cards */ }
135
135
< div className = 'grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4' >
136
- { data . map ( ( user ) => (
136
+ { data . map ( ( user : any ) => (
137
137
< UserCard key = { user . id } user = { user } />
138
138
) ) }
139
139
</ div >
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ import {
13
13
getUserData ,
14
14
} from '@web/src/modules/auth/features/auth.utils' ;
15
15
16
- import { BlockSearch } from './BlockSearchProps' ;
17
16
import { BlockTab } from './BlockTab' ;
18
17
import { NavLinks } from './NavLinks' ;
19
18
import { RandomSongButton } from './RandomSongButton' ;
@@ -108,7 +107,10 @@ export const Header = async () => {
108
107
id = 'about-tab'
109
108
/>
110
109
< RandomSongButton />
111
- < BlockSearch />
110
+ { /*
111
+ // TODO: feature song search
112
+ <BlockSearch />
113
+ */ }
112
114
</ div >
113
115
114
116
{ /* Sign in / Profile */ }
You can’t perform that action at this time.
0 commit comments