mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-23 13:29:35 +02:00
Added auth headers to api requests
This commit is contained in:
parent
0d36c5cf94
commit
d94a6cea5a
12 changed files with 135 additions and 56 deletions
|
@ -124,7 +124,9 @@ export const Home = (): JSX.Element => {
|
|||
<BookmarkGrid
|
||||
categories={
|
||||
!bookmarkSearchResult
|
||||
? categories.filter(({ isPinned }) => isPinned)
|
||||
? categories.filter(
|
||||
({ isPinned, bookmarks }) => isPinned && bookmarks.length
|
||||
)
|
||||
: bookmarkSearchResult
|
||||
}
|
||||
totalCategories={categories.length}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue