bestguy / sveltestrap

Bootstrap 4 & 5 components for Svelte
https://sveltestrap.js.org
MIT License
1.3k stars 183 forks source link

Warning: <Toast> was created without expected prop "header" #376

Closed nstuyvesant closed 3 years ago

nstuyvesant commented 3 years ago

I'm using ToastHeader instead of the Toast header property. My console displays...

was created without expected prop "header"

Minor thing but I think if you change this line from

 export let header;

to

 export let header = undefined;

the warning should go away. Your property, header, is not required according to Toast.d.ts.

Just an annoying Svelte warning.

bestguy commented 3 years ago

Ah thanks for the catch, will do 👍

bestguy commented 3 years ago

Released in sveltestrap@5.6.3, thanks for the issue.