Skip to content

Commit 2d3a526

Browse files
authored
Fix code snippets in changeset
1 parent 7938bff commit 2d3a526

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.changeset/clever-friends-carry.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ If you are using the feed client via `@knocklabs/client` directly:
2121
```js
2222
const knockFeed = knockClient.feeds.initialize(
2323
process.env.KNOCK_FEED_CHANNEL_ID,
24-
{ mode: "full" },
24+
{ mode: "rich" },
2525
);
2626
```
2727

@@ -30,7 +30,7 @@ If you are using `<KnockFeedProvider>` via `@knocklabs/react`, `@knocklabs/react
3030
```tsx
3131
<KnockFeedProvider
3232
feedId={process.env.KNOCK_FEED_CHANNEL_ID}
33-
defaultFeedOptions={{ mode: "full" }}
33+
defaultFeedOptions={{ mode: "rich" }}
3434
/>
3535
```
3636

@@ -40,6 +40,6 @@ If you are using the `useNotifications` hook via `@knocklabs/react-core`:
4040
const feedClient = useNotifications(
4141
knockClient,
4242
process.env.KNOCK_FEED_CHANNEL_ID,
43-
{ mode: "full" },
43+
{ mode: "rich" },
4444
);
4545
```

0 commit comments

Comments
 (0)