Skip to content

Commit

Permalink
temp redirect
Browse files Browse the repository at this point in the history
  • Loading branch information
potts99 committed Dec 7, 2023
1 parent e12807d commit e81178f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions apps/client/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,17 @@ import { useEffect, useState } from "react";

import useTranslation from "next-translate/useTranslation";

import ListTodo from "../components/ListTodo";
// import ListUserFiles from "../components/ListUserFiles";
import { useRouter } from "next/router";
import ListTodo from "../components/ListTodo";

import { getCookie } from "cookies-next";
import moment from "moment";
import { useUser } from "../store/session";

export async function getServerSideProps({ req, res }) {
return res.redirect("/tickets");
}

export default function Home() {
const router = useRouter();
const { t } = useTranslation("peppermint");
Expand Down

0 comments on commit e81178f

Please sign in to comment.