Skip to content

Commit 79ff41a

Browse files
committed
fix: remove annotated param
1 parent e0e1a8e commit 79ff41a

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ vendor/generated-*.txt
1414
# IDEs
1515
.vscode
1616
# System
17-
.DS_Store
17+
.DS_Store

pages/alert/permutations.page.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,7 @@ export default function AlertScenario() {
111111
<article>
112112
<h1>Alert permutations</h1>
113113
<ScreenshotArea>
114-
<PermutationsView
115-
permutations={permutations}
116-
render={(permutation: AlertProps) => <Alert {...permutation} />}
117-
/>
114+
<PermutationsView permutations={permutations} render={permutation => <Alert {...permutation} />} />
118115
</ScreenshotArea>
119116
</article>
120117
);

0 commit comments

Comments
 (0)