Skip to content

Commit

Permalink
fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander-Kezik committed Feb 12, 2024
1 parent 97a3f74 commit 58327e1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apps/chat/src/components/Chat/Migration/Migration.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ export const Migration = ({ total, uploaded }: Props) => {
return (
<div className="flex h-full flex-col items-center justify-center">
<Spinner className="h-auto" size={60} />
<h1 className="mt-7 text-2xl md:text-3xl font-semibold">{t('Migration')}</h1>
<h1 className="mt-7 text-2xl font-semibold md:text-3xl">
{t('Migration')}
</h1>
<p className="mt-7 text-center text-base md:text-xl">
{uploaded} {t('out of')} {total} <br />
{t('conversations and prompts are loaded')}
Expand Down

0 comments on commit 58327e1

Please sign in to comment.