Skip to content

Commit 48bb684

Browse files
committed
fix: fix linter error ImageURLS
1 parent 3ff0a6f commit 48bb684

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

example/src/pages/OutOfBandAssetsWithSuspense.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,11 @@ const ImageURLSlow =
6767
`https://app.requestly.io/delay/${delay}/https://picsum.photos/id/374/500/500` as const;
6868
const ImageInvalidURL = 'not-a-valid-url' as const;
6969

70-
type ImageURLS = typeof ImageURL1 | typeof ImageURL2 | typeof ImageURLSlow;
70+
type ImageURLS =
71+
| typeof ImageURL1
72+
| typeof ImageURL2
73+
| typeof ImageURLSlow
74+
| typeof ImageInvalidURL;
7175

7276
const imagePromises = new Map<string, Promise<RiveImage>>();
7377

0 commit comments

Comments
 (0)