diff --git a/frontend/src/components/Details/Info/GameInfo.vue b/frontend/src/components/Details/Info/GameInfo.vue index 8b2ad4d7f..c08da7361 100644 --- a/frontend/src/components/Details/Info/GameInfo.vue +++ b/frontend/src/components/Details/Info/GameInfo.vue @@ -6,13 +6,14 @@ import { useDisplay } from "vuetify"; defineProps<{ rom: EnhancedRomSchema }>(); const { xs } = useDisplay(); const galleryFilter = storeGalleryFilter(); +const capitalizeString = (str: string) => str.charAt(0).toUpperCase() + str.slice(1);