format code
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user