mv `/getting_started` to `/getting-started` (#556)
parent
52f95eb1c3
commit
72c43cc44e
|
@ -24,7 +24,7 @@ import prisma from "@lib/prisma";
|
|||
import { GetServerSidePropsContext, InferGetServerSidePropsType } from "next";
|
||||
import { useMutation } from "react-query";
|
||||
import createEventType from "@lib/mutations/event-types/create-event-type";
|
||||
import { ONBOARDING_INTRODUCED_AT } from "../getting_started/index";
|
||||
import { ONBOARDING_INTRODUCED_AT } from "../getting-started";
|
||||
|
||||
const EventTypesPage = (props: InferGetServerSidePropsType<typeof getServerSideProps>) => {
|
||||
const { user, types } = props;
|
||||
|
@ -668,7 +668,7 @@ export const getServerSideProps = async (context: GetServerSidePropsContext) =>
|
|||
return {
|
||||
redirect: {
|
||||
permanent: false,
|
||||
destination: "/getting_started",
|
||||
destination: "/getting-started",
|
||||
},
|
||||
};
|
||||
}
|
||||
|
|
|
@ -27,7 +27,7 @@ import { Dialog, DialogClose, DialogContent, DialogHeader } from "@components/Di
|
|||
import SchedulerForm, { SCHEDULE_FORM_ID } from "@components/ui/Schedule/Schedule";
|
||||
import { useRouter } from "next/router";
|
||||
import { Integration } from "pages/integrations";
|
||||
import { AddCalDavIntegrationRequest } from "../../lib/integrations/CalDav/components/AddCalDavIntegration";
|
||||
import { AddCalDavIntegrationRequest } from "../lib/integrations/CalDav/components/AddCalDavIntegration";
|
||||
import classnames from "classnames";
|
||||
import { ArrowRightIcon } from "@heroicons/react/outline";
|
||||
|
Loading…
Reference in New Issue