fix error page not having country provider (#7159)

This commit is contained in:
Prospector
2026-08-14 19:18:22 -07:00
committed by GitHub
parent 4897c2da94
commit 9582c1a6fd
3 changed files with 4 additions and 28 deletions
+2
View File
@@ -7,6 +7,7 @@ import { setupLoadingStateProvider } from './setup/loading-state'
import { setupModrinthClientProvider } from './setup/modrinth-client'
import { setupPageContextProvider } from './setup/page-context'
import { setupTagsProvider } from './setup/tags'
import { setupUserCountryProvider } from './setup/user-country'
export function setupProviders(auth: Awaited<ReturnType<typeof useAuth>>) {
provideNotificationManager(new FrontendNotificationManager())
@@ -17,4 +18,5 @@ export function setupProviders(auth: Awaited<ReturnType<typeof useAuth>>) {
setupFilePickerProvider()
setupPageContextProvider()
setupLoadingStateProvider()
setupUserCountryProvider()
}