Skip to content

Commit

Permalink
Fixed formatting in website code
Browse files Browse the repository at this point in the history
  • Loading branch information
Liam Boddin committed Sep 14, 2023
1 parent 7583ca0 commit 7e5f94f
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions Website/src/app/management/poiTypes/client.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ This is a co-located client-component. It is not in the components folder, becau
else, but also not in ´page.tsx` as we need to obtain the currently selected track id on the server.
*/

import { useState } from "react"
import useSWR from "swr"
import { Option } from "@/utils/types"
import { CreatePOIType, POITypeIcon } from "@/utils/api"
import { Options, SingleValue } from "react-select"
import IconSelection from "@/app/management/components/iconSelection"
import { getFetcher } from "@/utils/fetcher"
import { ErrorMessage } from "@/app/management/components/errorMessage"
import StyledSelect from "@/app/management/components/styledSelect"
import { InputWithLabel } from "@/app/management/components/inputWithLabel"
import ManagementForm from "@/app/management/components/managementForm"
import { useState } from "react";
import useSWR from "swr";
import { Option } from "@/utils/types";
import { CreatePOIType, POITypeIcon } from "@/utils/api";
import { Options, SingleValue } from "react-select";
import IconSelection from "@/app/management/components/iconSelection";
import { getFetcher } from "@/utils/fetcher";
import { ErrorMessage } from "@/app/management/components/errorMessage";
import StyledSelect from "@/app/management/components/styledSelect";
import { InputWithLabel } from "@/app/management/components/inputWithLabel";
import ManagementForm from "@/app/management/components/managementForm";

export default function POITypeManagement({ noFetch = false }: { noFetch?: boolean }) {
// fetch Vehicle information with swr.
Expand Down

0 comments on commit 7e5f94f

Please sign in to comment.