Skip to content

Commit

Permalink
Fix validation
Browse files Browse the repository at this point in the history
  • Loading branch information
yakovenkodenis committed Jan 26, 2025
1 parent abede1c commit 66bc189
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/challenge/challenge.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const Challenge: FC = () => {

const onValidate: OnValidate = useCallback(async (markers) => {
const errors = markers
.filter((marker) => !['6205', '6196'].includes(marker.code as string))
.filter((marker) => !['6205', '6196', '6133'].includes(marker.code as string))
.map((marker) => `line ${marker.startLineNumber}: ${marker.message} (.${marker.resource.path})`);

setErrors(errors);
Expand Down

0 comments on commit 66bc189

Please sign in to comment.