Skip to content

Commit

Permalink
Fix name case for unix systems.
Browse files Browse the repository at this point in the history
  • Loading branch information
MelissaAutumn committed Apr 17, 2024
1 parent dee36f2 commit 2ecc048
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/src/elements/PrimaryButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<script setup>
import { ref } from 'vue';
import { useI18n } from 'vue-i18n';
import ToolTip from '@/elements/ToolTip';
import ToolTip from '@/elements/Tooltip';
// icons
import { IconClipboardCheck, IconCopy } from '@tabler/icons-vue';
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/elements/SecondaryButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<script setup>
import { ref } from 'vue';
import { useI18n } from 'vue-i18n';
import ToolTip from '@/elements/ToolTip';
import ToolTip from '@/elements/Tooltip';
// icons
import { IconClipboardCheck, IconCopy } from '@tabler/icons-vue';
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/elements/TextButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<script setup>
import { ref } from 'vue';
import { useI18n } from 'vue-i18n';
import ToolTip from '@/elements/ToolTip';
import ToolTip from '@/elements/Tooltip';
// icons
import { IconCopy, IconClipboardCheck } from '@tabler/icons-vue';
Expand Down

0 comments on commit 2ecc048

Please sign in to comment.