mv `/getting_started` to `/getting-started` (#556)

pull/557/head^2
Alex Johansson 2021-09-02 18:26:21 +02:00 committed by GitHub
parent 52f95eb1c3
commit 72c43cc44e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -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",
},
};
}

View File

@ -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";