Skip to content

Commit

Permalink
fix: Fix meta types (#255)
Browse files Browse the repository at this point in the history
  • Loading branch information
NasgulNexus authored Dec 9, 2024
1 parent 49ae3a1 commit e7a710c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
container:
image: mcr.microsoft.com/playwright:v1.40.0-jammy
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies
Expand All @@ -22,7 +22,7 @@ jobs:
CI: 'true'
- name: Upload Playwright playwright report to GitHub Actions Artifacts
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: playwright-report
path: ./playwright-report
Expand Down
1 change: 1 addition & 0 deletions src/lib/core/components/Form/types/field.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,6 @@ export interface FieldRenderProps<Value extends FieldValue> {
valid: boolean;
visited: boolean;
submitFailed: boolean;
childErrors: Record<string, ValidateError>;
};
}

0 comments on commit e7a710c

Please sign in to comment.