Skip to content

Commit e7a710c

Browse files
authored
fix: Fix meta types (#255)
1 parent 49ae3a1 commit e7a710c

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/playwright.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
container:
1111
image: mcr.microsoft.com/playwright:v1.40.0-jammy
1212
steps:
13-
- uses: actions/checkout@v3
14-
- uses: actions/setup-node@v3
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-node@v4
1515
with:
1616
node-version: 18
1717
- name: Install dependencies
@@ -22,7 +22,7 @@ jobs:
2222
CI: 'true'
2323
- name: Upload Playwright playwright report to GitHub Actions Artifacts
2424
if: always()
25-
uses: actions/upload-artifact@v3
25+
uses: actions/upload-artifact@v4
2626
with:
2727
name: playwright-report
2828
path: ./playwright-report

src/lib/core/components/Form/types/field.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,6 @@ export interface FieldRenderProps<Value extends FieldValue> {
3333
valid: boolean;
3434
visited: boolean;
3535
submitFailed: boolean;
36+
childErrors: Record<string, ValidateError>;
3637
};
3738
}

0 commit comments

Comments
 (0)