Skip to content

Commit

Permalink
I've made a mess
Browse files Browse the repository at this point in the history
  • Loading branch information
markspolakovs committed Feb 27, 2024
1 parent d68178d commit 81582be
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions app/(authenticated)/calendar/[eventID]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import {
} from "@/components/FormFieldPreloadedData";
import { getAllUsers } from "@/features/people";
import { EventActionsUI } from "./EventActionsUI";
import { Alert, Text } from "@mantine/core";
import { Alert, Space, Text } from "@mantine/core";
import { TbInfoCircle, TbAlertTriangle } from "react-icons/tb";
import slackApiConnection, {
isSlackEnabled,
Expand Down Expand Up @@ -110,7 +110,12 @@ async function CheckWithTechPrompt({
if (!slack) {
return null;
}
return <CheckWithTechPromptContents eventID={event.event_id} />;
return (
<>
<CheckWithTechPromptContents eventID={event.event_id} />
<Space h={"lg"} />
</>
);
}

async function ShowView({
Expand Down

0 comments on commit 81582be

Please sign in to comment.