Skip to content

Commit

Permalink
chore: don't replace the test files
Browse files Browse the repository at this point in the history
  • Loading branch information
JanCizmar committed Nov 10, 2024
1 parent daf2a53 commit 604d9b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
4 changes: 1 addition & 3 deletions testsGpt/exampleFiles/simple.tsx.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import { T } from '@tolgee/react';

export const WelcomeMessage = () => {
return <div><T keyName="welcome-message" /></div>;
return <div>Welcome!</div>;
};
5 changes: 1 addition & 4 deletions testsGpt/exampleFiles/useTranslate.tsx.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
import { useTranslate } from '@tolgee/react';

export const PasswordField = () => {
const { t } = useTranslate();
return <input placeholder={t('new-password-input-placeholder')} />;
return <input placeholder="New Password" />;
};

0 comments on commit 604d9b6

Please sign in to comment.