Skip to content

Commit

Permalink
Merge pull request #906 from InseeFr/fix/solve-issue-concept
Browse files Browse the repository at this point in the history
fix: remove ugly icon
  • Loading branch information
PierreVasseur authored Aug 29, 2024
2 parents beba2ee + 5a864d2 commit 09b92aa
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { WarningLogo } from '@inseefr/wilco';
import ModifyNotes from './modify-notes';
import { htmlLength } from '../../utils/html-utils';

Expand All @@ -14,10 +13,7 @@ function NoteOneLangEdition({
const noteLength = htmlLength(note);
const checkLength = maxLength && (
<div>
<div>
{noteLength} / {maxLength}
</div>
<div>{noteLength > maxLength && <WarningLogo />}</div>
{noteLength} / {maxLength}
</div>
);

Expand Down

0 comments on commit 09b92aa

Please sign in to comment.