format code

This commit is contained in:
2025-07-25 01:10:00 +02:00
parent 3bcd2e16a2
commit d08290ce3d
5 changed files with 14 additions and 12 deletions

View File

@@ -1,8 +1,7 @@
import { useEffect } from "react";
import TimetableRow from "../TimetableRow/TimetableRow";
import TimetableRow from "@/components/TimetableRow/TimetableRow";
import _ from "lodash";
import { useKVVStore } from "@/store/kvv";
import type { DepartureType } from "@/types/departureType";
@@ -39,6 +38,7 @@ export default function Timetable() {
<table>
<tbody>
{hStreetData.map((departure, index) => (
// biome-ignore lint/suspicious/noArrayIndexKey: there is no id
<TimetableRow key={index} departure={departure} />
))}
</tbody>
@@ -47,6 +47,7 @@ export default function Timetable() {
<table>
<tbody>
{pStreetData.map((departure, index) => (
// biome-ignore lint/suspicious/noArrayIndexKey: there is no id
<TimetableRow key={index} departure={departure} />
))}
</tbody>