clean branch-scoped code quality issues

This commit is contained in:
2026-04-28 14:23:37 +02:00
parent 356bb5ef88
commit 324aa9dc0f
15 changed files with 218 additions and 242 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ import { createContext } from "react";
export type DocsLanguage = "en" | "fr";
export interface DocsLanguageContextValue {
interface DocsLanguageContextValue {
language: DocsLanguage;
toggleLanguage: () => void;
}