File tree Expand file tree Collapse file tree 3 files changed +29
-14
lines changed
Expand file tree Collapse file tree 3 files changed +29
-14
lines changed Original file line number Diff line number Diff line change 1+ name : Build Server (deprecated)
2+
3+ on :
4+ # Only runnable manually; kept to satisfy existing workflow references.
5+ workflow_dispatch :
6+
7+ jobs :
8+ noop :
9+ runs-on : ubuntu-latest
10+ steps :
11+ - name : Deprecated workflow
12+ run : echo "build_server.yml is deprecated. Use the 'Build' workflow instead."
13+
Original file line number Diff line number Diff line change @@ -10,6 +10,10 @@ import { hitEnter } from "./utilities/fireEvents";
1010import { TagReqPayload } from "@type/Bookmarks/Tag" ;
1111import Bookmark from "@type/Bookmarks/Bookmark" ;
1212import { Providers } from "@/app/providers" ;
13+
14+ vi . mock ( "next/font/google" , ( ) => ( {
15+ Libre_Baskerville : ( ) => ( { className : "mocked-font" } ) ,
16+ } ) ) ;
1317const userEvnt = userEvent . setup ( ) ;
1418
1519const data = JSON . stringify ( bkmkResp , null , 2 ) ;
Original file line number Diff line number Diff line change @@ -75,20 +75,18 @@ const GlobalNavbar: React.FC = () => {
7575 className = "bg-body-tertiary"
7676 >
7777 < Container className = { navbarView . navContainer } >
78- { isMobile ? (
79- < Navbar . Brand
80- onClick = { ( ) => router . push ( "/" ) }
81- className = { ` ${ navbarView . navBrand } ` }
82- >
83- < Image
84- src = "/basic-f-v2-dark-mode-v2-fav.png"
85- width = "38"
86- height = "30"
87- className = "d-inline-block align-top"
88- alt = "FindFirst Logo"
89- />
90- </ Navbar . Brand >
91- ) : null }
78+ < Navbar . Brand
79+ onClick = { ( ) => router . push ( "/" ) }
80+ className = { ` ${ navbarView . navBrand } ` }
81+ >
82+ < Image
83+ src = "/basic-f-v2-dark-mode-v2-fav.png"
84+ width = "38"
85+ height = "30"
86+ className = "d-inline-block align-top"
87+ alt = "FindFirst Logo"
88+ />
89+ </ Navbar . Brand >
9290
9391 { /* Search bar stays visible always */ }
9492 { userAuth === AuthStatus . Authorized ? < Searchbar /> : null }
You can’t perform that action at this time.
0 commit comments