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

This commit is contained in:
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 { GetServerSidePropsContext, InferGetServerSidePropsType } from "next";
import { useMutation } from "react-query"; import { useMutation } from "react-query";
import createEventType from "@lib/mutations/event-types/create-event-type"; 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 EventTypesPage = (props: InferGetServerSidePropsType<typeof getServerSideProps>) => {
const { user, types } = props; const { user, types } = props;
@ -668,7 +668,7 @@ export const getServerSideProps = async (context: GetServerSidePropsContext) =>
return { return {
redirect: { redirect: {
permanent: false, 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 SchedulerForm, { SCHEDULE_FORM_ID } from "@components/ui/Schedule/Schedule";
import { useRouter } from "next/router"; import { useRouter } from "next/router";
import { Integration } from "pages/integrations"; 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 classnames from "classnames";
import { ArrowRightIcon } from "@heroicons/react/outline"; import { ArrowRightIcon } from "@heroicons/react/outline";