Skip to content

Commit

Permalink
fix: lint and formating
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrofp4444 committed Mar 16, 2024
1 parent 5750b86 commit 4cc854a
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions apps/app/pages/event/[id].tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
import Link from "next/link";
import { Alert } from "antd";
import { useRouter } from "next/router";
import { useEffect, useState } from "react";
import { useAuth } from "@coderdojobraga/ui";
import { withAuth } from "~/components/Auth";
import {
Alert,
Avatar,
Button,
Col,
Expand All @@ -16,6 +12,10 @@ import {
Select,
Typography,
} from "antd";
import { useRouter } from "next/router";
import { useEffect, useState } from "react";
import { useAuth } from "@coderdojobraga/ui";
import { withAuth } from "~/components/Auth";
import { useEvent } from "~/hooks/events";
import AppLayout from "~/layouts/AppLayout";
import Event from "~/components/Event";
Expand Down Expand Up @@ -162,7 +162,8 @@ function EventPage() {
.then(() =>
notifyInfo(
"Info",
`A tua inscrição foi recebida com sucesso - ${is_available ? "disponível" : "não disponível"
`A tua inscrição foi recebida com sucesso - ${
is_available ? "disponível" : "não disponível"
}`
)
)
Expand Down Expand Up @@ -190,7 +191,8 @@ function EventPage() {
.then(() =>
notifyInfo(
"Info",
`A tua inscrição foi atualizada com sucesso - ${is_available ? "disponível" : "não disponível"
`A tua inscrição foi atualizada com sucesso - ${
is_available ? "disponível" : "não disponível"
}`
)
)
Expand Down

0 comments on commit 4cc854a

Please sign in to comment.