Fix types

This commit is contained in:
Kyle Carberry 2024-03-27 14:24:25 -04:00
parent 68817acc7a
commit a04ea87d8c
2 changed files with 3 additions and 3 deletions

View File

@ -39,7 +39,7 @@
go-migrate
golangci-lint
# google-chrome is not available on OSX
(if pkgs.stdenv.hostPlatform.isDarwin then null else google-chrome)
# (if pkgs.stdenv.hostPlatform.isDarwin then null else google-chrome)
gopls
gotestsum
jq

View File

@ -1,8 +1,8 @@
import type { FC, PropsWithChildren } from "react";
import { Outlet, useLocation } from "react-router-dom";
import { Margins } from "components/Margins/Margins";
import { PageHeader, PageHeaderTitle } from "components/PageHeader/PageHeader";
import { TabLink, Tabs, TabsList } from "components/Tabs/Tabs";
import { FC, PropsWithChildren } from "react";
import { Outlet, useLocation } from "react-router-dom";
const InsightsLayout: FC<PropsWithChildren> = ({ children = <Outlet /> }) => {
const location = useLocation();