{
+ const version = React.useMemo(
+ () => String(import.meta.env.VITE_VERSION)?.toUpperCase() || "",
+ [],
+ );
+ const commitHash = React.useMemo(
+ () =>
+ String(import.meta.env.VITE_COMMIT_HASH)
+ ?.toUpperCase()
+ .slice(0, 7) || "unk",
+ [],
+ );
+
return (