-
+
{isAdmin && (
)}
diff --git a/apps/app/src/client/components/SystemVersion.module.scss b/apps/app/src/client/components/SystemVersion.module.scss
deleted file mode 100644
index b845e5c5f4e..00000000000
--- a/apps/app/src/client/components/SystemVersion.module.scss
+++ /dev/null
@@ -1,10 +0,0 @@
-@use '@growi/core-styles/scss/helpers/modifier-keys';
-
-.system-version :global {
- position: fixed;
- right: 0.5em;
- bottom: 0;
- opacity: 0.6;
-
- @include modifier-keys.modifier-key;
-}
diff --git a/apps/app/src/client/components/SystemVersion.tsx b/apps/app/src/client/components/SystemVersion.tsx
deleted file mode 100644
index 95c483fb0cc..00000000000
--- a/apps/app/src/client/components/SystemVersion.tsx
+++ /dev/null
@@ -1,46 +0,0 @@
-import React, { type JSX } from 'react';
-
-import { useGrowiVersion } from '~/states/global';
-import { useShortcutsModalActions } from '~/states/ui/modal/shortcuts';
-
-import styles from './SystemVersion.module.scss';
-
-type Props = {
- showShortcutsButton?: boolean;
-};
-
-const SystemVersion = (props: Props): JSX.Element => {
- const { showShortcutsButton } = props;
-
- const { open: openShortcutsModal } = useShortcutsModalActions();
-
- const growiVersion = useGrowiVersion();
- // add classes to cmd-key by OS
- const platform = window.navigator.platform.toLowerCase();
- const isMac = platform.indexOf('mac') > -1;
- const os = isMac ? 'mac' : 'win';
-
- return (
- <>
-
-
- GROWI {growiVersion}
-
- {showShortcutsButton && (
-
- )}
-
- >
- );
-};
-
-export default SystemVersion;
diff --git a/apps/app/src/components/Layout/AdminLayout.tsx b/apps/app/src/components/Layout/AdminLayout.tsx
index 4b882d9d6db..744f736b38d 100644
--- a/apps/app/src/components/Layout/AdminLayout.tsx
+++ b/apps/app/src/components/Layout/AdminLayout.tsx
@@ -20,11 +20,6 @@ const PageCreateModal = dynamic(
() => import('~/client/components/PageCreateModal'),
{ ssr: false },
);
-const SystemVersion = dynamic(
- // biome-ignore lint/style/noRestrictedImports: no-problem dynamic import
- () => import('~/client/components/SystemVersion'),
- { ssr: false },
-);
const HotkeysManager = dynamic(
// biome-ignore lint/style/noRestrictedImports: no-problem dynamic import
() => import('~/client/components/Hotkeys/HotkeysManager'),
@@ -60,7 +55,6 @@ const AdminLayout = ({ children, componentTitle }: Props): JSX.Element => {