mirror of
https://github.com/outline/outline.git
synced 2026-06-23 16:24:23 +03:00
27fca28450
closes #1819
13 lines
237 B
JavaScript
13 lines
237 B
JavaScript
// @flow
|
|
import useStores from "./useStores";
|
|
|
|
export default function useUserLocale() {
|
|
const { auth } = useStores();
|
|
|
|
if (!auth.user || !auth.user.language) {
|
|
return undefined;
|
|
}
|
|
|
|
return auth.user.language.split("_")[0];
|
|
}
|