Skip to content

Commit

Permalink
fix(import): cannot import node
Browse files Browse the repository at this point in the history
  • Loading branch information
wanlce committed Dec 21, 2024
1 parent b44c472 commit 7d6a6b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ImportResourceFormModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ const schema = z.object({
.array(
z.object({
id: z.string(),
link: z.string().url().nonempty(),
tag: z.string().nonempty(),
link: z.string(),
tag: z.string().min(1),
}),
)
.nonempty(),
Expand Down

0 comments on commit 7d6a6b0

Please sign in to comment.