We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a851fd7 commit a89e043Copy full SHA for a89e043
1 file changed
src/core/pageContent/sidebarContent/SidebarCardsList.tsx
@@ -28,9 +28,9 @@ export default function SidebarCardsList({ cards }: CardsListItemProps) {
28
internalHrefOrigins,
29
getIsHrefExternal,
30
);
31
- const key =
32
- 'sidebar-card-' +
33
- Buffer.from(`${card.title}-${uri}`).toString('base64');
+ const key = `sidebar-card-${Buffer.from(
+ `${card.title}-${uri}`,
+ ).toString('base64')}`;
34
return (
35
<SimpleCard
36
key={key}
0 commit comments