Skip to content

Commit

Permalink
Teste de types
Browse files Browse the repository at this point in the history
  • Loading branch information
devsakae authored Sep 17, 2024
1 parent c664b03 commit 4ff5416
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/Admin/AddProject.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default function AddProject({ handleWarning, stackList }: Props) {
const [done, setDone] = useState(false);
const [imageUrl, setImageUrl] = useState('');
const [slug, setSlug] = useState('');
const [tags, setTags] = useState<Tag[]>([]);
const [tags, setTags] = useState<Tag[] | null | undefined | undefined[]>([]);
const suggestions = stackList.map((tag) => {
return {
id: tag,
Expand Down

0 comments on commit 4ff5416

Please sign in to comment.