From 1eb221bd5b4e2e739bf392a2e5ed0147d927fb96 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Tue, 11 Apr 2023 04:14:54 -0700 Subject: [PATCH] Update paths --- pages/new/index.tsx | 2 +- pages/p/[party].tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/new/index.tsx b/pages/new/index.tsx index 951f5b27..e2c38934 100644 --- a/pages/new/index.tsx +++ b/pages/new/index.tsx @@ -7,7 +7,7 @@ import { v4 as uuidv4 } from 'uuid' import clonedeep from 'lodash.clonedeep' import ErrorSection from '~components/ErrorSection' -import Party from '~components/party/Party' +import Party from '~components/team/Party' import NewHead from '~components/NewHead' import api from '~utils/api' diff --git a/pages/p/[party].tsx b/pages/p/[party].tsx index 145e4e0f..027b0101 100644 --- a/pages/p/[party].tsx +++ b/pages/p/[party].tsx @@ -2,9 +2,9 @@ import React, { useEffect, useState } from 'react' import { useRouter } from 'next/router' import { serverSideTranslations } from 'next-i18next/serverSideTranslations' -import Party from '~components/party/Party' +import Party from '~components/team/Party' import ErrorSection from '~components/ErrorSection' -import PartyHead from '~components/party/PartyHead' +import PartyHead from '~components/team/PartyHead' import api from '~utils/api' import elementEmoji from '~utils/elementEmoji'