diff --git a/frontend/src/components/misc/Card.story.vue b/frontend/src/components/misc/Card.story.vue
index 6abd897ae..cd6d9a98d 100644
--- a/frontend/src/components/misc/Card.story.vue
+++ b/frontend/src/components/misc/Card.story.vue
@@ -1,5 +1,5 @@
diff --git a/frontend/src/components/misc/card.vue b/frontend/src/components/misc/Card.vue
similarity index 100%
rename from frontend/src/components/misc/card.vue
rename to frontend/src/components/misc/Card.vue
diff --git a/frontend/src/components/tasks/partials/reminder-detail.vue b/frontend/src/components/tasks/partials/reminder-detail.vue
index 7f95ab1e5..c62fa611d 100644
--- a/frontend/src/components/tasks/partials/reminder-detail.vue
+++ b/frontend/src/components/tasks/partials/reminder-detail.vue
@@ -84,7 +84,7 @@ import ReminderPeriod from '@/components/tasks/partials/reminder-period.vue'
import Popup from '@/components/misc/popup.vue'
import TaskReminderModel from '@/models/taskReminder'
-import Card from '@/components/misc/card.vue'
+import Card from '@/components/misc/Card.vue'
import SimpleButton from '@/components/input/SimpleButton.vue'
import {useDebounceFn} from '@vueuse/core'
diff --git a/frontend/src/histoire.setup.ts b/frontend/src/histoire.setup.ts
index 495ccc985..67a17754c 100644
--- a/frontend/src/histoire.setup.ts
+++ b/frontend/src/histoire.setup.ts
@@ -11,7 +11,7 @@ import cypress from '@/directives/cypress'
import FontAwesomeIcon from '@/components/misc/Icon'
import XButton from '@/components/input/button.vue'
import Modal from '@/components/misc/modal.vue'
-import Card from '@/components/misc/card.vue'
+import Card from '@/components/misc/Card.vue'
export const setupVue3 = defineSetupVue3(({ app }) => {
// Add Pinia store
diff --git a/frontend/src/main.ts b/frontend/src/main.ts
index 432282d75..d7b600176 100644
--- a/frontend/src/main.ts
+++ b/frontend/src/main.ts
@@ -46,7 +46,7 @@ import cypress from '@/directives/cypress'
import FontAwesomeIcon from '@/components/misc/Icon'
import Button from '@/components/input/button.vue'
import Modal from '@/components/misc/modal.vue'
-import Card from '@/components/misc/card.vue'
+import Card from '@/components/misc/Card.vue'
// We're loading the language before creating the app so that it won't fail to load when the user's
// language file is not yet loaded.
diff --git a/frontend/src/types/global-components.d.ts b/frontend/src/types/global-components.d.ts
index ff581bda5..9a1551a9c 100644
--- a/frontend/src/types/global-components.d.ts
+++ b/frontend/src/types/global-components.d.ts
@@ -4,7 +4,7 @@ import type { Notifications } from '@kyvg/vue3-notification'
import type { FontAwesomeIcon as FontAwesomeIconFixedTypes } from './vue-fontawesome'
import type XButton from '@/components/input/button.vue'
import type Modal from '@/components/misc/modal.vue'
-import type Card from '@/components/misc/card.vue'
+import type Card from '@/components/misc/Card.vue'
// Here we define globally imported components
// See: