* feat: add server settings for default board, default color scheme and default locale * chore: address pull request feedback * test: adjust unit tests to match requirements * fix: deepsource issue * chore: add deepsource as dependency to translation library * refactor: restructure language-combobox, adjust default locale for next-intl * chore: change cookie keys prefix from homarr- to homarr.
13 lines
404 B
TypeScript
13 lines
404 B
TypeScript
"use client";
|
|
|
|
import { useChangeLocale, useCurrentLocale } from "@homarr/translation/client";
|
|
|
|
import { LanguageCombobox } from "./language-combobox";
|
|
|
|
export const CurrentLanguageCombobox = () => {
|
|
const currentLocale = useCurrentLocale();
|
|
const { changeLocale, isPending } = useChangeLocale();
|
|
|
|
return <LanguageCombobox value={currentLocale} onChange={changeLocale} isPending={isPending} />;
|
|
};
|