🚨 fix: resolve linting errors
All checks were successful
Integration Tests / integration-tests (pull_request) Successful in 41s

This commit is contained in:
2026-02-10 20:36:19 +07:00
parent e187f93aef
commit 34eb8d3a8b
4 changed files with 4 additions and 5 deletions

View File

@ -8,7 +8,7 @@ const page = async () => {
try {
const data = await backendFetch("status");
console.log(data);
} catch (_) {
} catch {
isDown = true;
}
if (!isDown) redirect("/");

View File

@ -1,7 +1,6 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono, Inter } from "next/font/google";
import "./globals.css";
import AuthSessionProviderWrapper from "@/shared/providers/AuthSession";
const inter = Inter({ subsets: ["latin"], variable: "--font-sans" });