feat(SW-322): refactor shortcuts list

This commit is contained in:
Fredrik Thorsson
2024-10-11 14:00:56 +02:00
parent 67a33c9dc8
commit 5d1bdd9cd8
13 changed files with 77 additions and 58 deletions

View File

@@ -1,6 +1,6 @@
import CardsGrid from "@/components/Blocks/CardsGrid"
import DynamicContent from "@/components/Blocks/DynamicContent"
import Shortcuts from "@/components/Blocks/Shortcuts"
import ShortcutsList from "@/components/Blocks/ShortcutsList"
import JsonToHtml from "@/components/JsonToHtml"
import { getLang } from "@/i18n/serverContext"
import { modWebviewLink } from "@/utils/webviews"
@@ -55,7 +55,7 @@ export default function Blocks({ blocks }: BlocksProps) {
url: modWebviewLink(shortcut.url, getLang()),
}))
return (
<Shortcuts
<ShortcutsList
key={`${block.shortcuts.title}-${idx}`}
firstItem={firstItem}
shortcuts={shortcuts}