Skip to content

Commit

Permalink
set required field (#93)
Browse files Browse the repository at this point in the history
* set required field

Signed-off-by: Bob Callaway <[email protected]>

* quiet linter

Signed-off-by: Bob Callaway <[email protected]>

---------

Signed-off-by: Bob Callaway <[email protected]>
  • Loading branch information
bobcallaway authored Dec 22, 2024
1 parent 8a496c1 commit 8e510b1
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,3 @@ updates:
update-types:
- "minor"
- "patch"

2 changes: 1 addition & 1 deletion .github/workflows/nextjs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
node-version-file: "package.json"
cache: ${{ steps.detect-package-manager.outputs.manager }}
- name: Setup Pages
uses: actions/configure-pages@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reviewdog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
node-version-file: "package.json"
- uses: reviewdog/action-eslint@v1
with:
reporter: github-check
Expand Down
1 change: 1 addition & 0 deletions src/modules/components/SearchForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ export function SearchForm({ defaultValues, onSubmit, isLoading }: FormProps) {
},
pattern: undefined,
min: undefined,
deps: undefined,
},
inputConfigByAttribute[watchAttribute].rules,
);
Expand Down

0 comments on commit 8e510b1

Please sign in to comment.