Skip to content

Commit

Permalink
Fixed wrong translation path
Browse files Browse the repository at this point in the history
  • Loading branch information
thebigrick authored and bookernath committed Nov 29, 2024
1 parent ee6bbb9 commit 38be16c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/components/ui/footer/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const Footer = ({
socialMediaLinks,
...props
}: Props) => {
const t = useTranslations('Footer');
const t = useTranslations('Components.Footer');

return (
<footer className={cn('2xl:container 2xl:mx-auto', className)} {...props}>
Expand Down
2 changes: 1 addition & 1 deletion core/components/ui/slideshow/slideshow.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import useEmblaCarousel from 'embla-carousel-react';
import { ArrowLeft, ArrowRight, Pause, Play } from 'lucide-react';
import NextImage, { StaticImageData } from 'next/image';
import { useTranslations } from 'next-intl';
import { useEffect, useReducer, useState } from 'react';

import { cn } from '~/lib/utils';

import { Button } from '../button';
import { useTranslations } from 'next-intl';

interface Link {
label: string;
Expand Down

0 comments on commit 38be16c

Please sign in to comment.