This commit is contained in:
Karol Wypchlo 2021-02-22 18:51:14 +01:00
parent c9891a6e4b
commit 273a5519e8
1 changed files with 0 additions and 7 deletions

View File

@ -1,13 +1,6 @@
import Link from "next/link"; import Link from "next/link";
import Layout from "../components/Layout"; import Layout from "../components/Layout";
import dayjs from "dayjs";
import prettyBytes from "pretty-bytes";
import { useState } from "react";
import useSWR from "swr"; import useSWR from "swr";
import Layout from "../components/Layout";
import Table from "../components/Table";
import authServerSideProps from "../services/authServerSideProps";
import { SkynetClient } from "skynet-js";
const apiPrefix = process.env.NODE_ENV === "development" ? "/api/stubs" : "/api"; const apiPrefix = process.env.NODE_ENV === "development" ? "/api/stubs" : "/api";
const fetcher = (url) => fetch(url).then((r) => r.json()); const fetcher = (url) => fetch(url).then((r) => r.json());