diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9dd57fc..b3a3a9d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -515,8 +515,13 @@ export default function RootLayout ({ (v, i) => (
- {getVersionGame(v.game)?.name} v - {v.versionName} + {getVersionGame(v.game)?.cutOff == null + ? getVersionGame(v.game)?.name + : getVersionGame(v.game)?.name.substring( + 0, + getVersionGame(v.game)?.cutOff ?? 0 + ) + '...'}{' '} + v{v.versionName}