Skip to content

Commit 8a5ebdf

Browse files
committed
Readme updated.
1 parent 9d3725e commit 8a5ebdf

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

README.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ $: if ($flash) {
248248

249249
## Flash message options
250250

251-
When calling `getFlash`, you can specify options, which will be set for the current route and the ones below.
251+
When calling `getFlash`, you can specify options, which will be inherited for the current route and the ones below.
252252

253253
```ts
254254
const flash = getFlash(page, {
@@ -272,15 +272,15 @@ initFlash(page, {
272272

273273
### clearOnNavigate
274274

275-
If `true` (the default), the flash message will be removed when navigating to a different url.
275+
If `true` (the default), the flash message will be removed when navigating to a different route.
276276

277277
### clearAfterMs
278278

279279
Can be set to a number of milliseconds before the flash message is automatically set to `undefined`.
280280

281281
### clearArray
282282

283-
If you specify `App.PageData['flash']` as an array, the library will concatenate messages into the array instead of replacing them. But if you always want to clear the previous messages for arrays, set the `clearArray` option to `true`.
283+
If you specify `App.PageData['flash']` as an array, the library will concatenate messages into the array instead of replacing them. But if you always want to clear the previous messages for arrays, set the `clearArray` option to `true`. If your flash message isn't an array, this option will have no effect.
284284

285285
### flashCookieOptions
286286

@@ -296,10 +296,12 @@ export const load = loadFlash(async (event) => {
296296
});
297297
```
298298

299-
And correspondingly, on the client:
299+
And correspondingly, on the client (in a top-level component):
300300

301301
```ts
302-
const flash = getFlash(page, {
302+
import { initFlash } from 'sveltekit-flash-message';
303+
304+
initFlash(page, {
303305
flashCookieOptions: { sameSite: 'lax' }
304306
});
305307
```

0 commit comments

Comments
 (0)