feat(SW-322): fix typo

This commit is contained in:
Fredrik Thorsson
2024-10-11 14:50:45 +02:00
parent af71bc3ec6
commit 765c934307
3 changed files with 5 additions and 5 deletions

View File

@@ -7,11 +7,11 @@ import styles from "./shortcutsListItems.module.css"
import type { ShortcutsListItemsProps } from "@/types/components/blocks/shortcuts"
export default function ShortcutsListItems({
shortCutsListItems,
shortcutsListItems,
}: ShortcutsListItemsProps) {
return (
<ul>
{shortCutsListItems.map((shortcut) => (
{shortcutsListItems.map((shortcut) => (
<li key={shortcut.title} className={styles.listItem}>
<Link
href={shortcut.url}