Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Register game ban modal in mod queue
  • Loading branch information
regalijan committed Oct 19, 2023
1 parent 9a47061 commit f31dd1d
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion app/routes/mod-queue.tsx
Expand Up @@ -19,6 +19,7 @@ import {
import { useEffect, useState } from "react";
import AppealCard from "../../components/AppealCard.js";
import GameAppealCard from "../../components/GameAppealCard.js";
import NewGameBan from "../../components/NewGameBan.js";
import NewInfractionModal from "../../components/NewInfractionModal.js";
import ReportCard from "../../components/ReportCard.js";
import { useLoaderData } from "@remix-run/react";
Expand Down Expand Up @@ -218,6 +219,10 @@ export default function () {

return (
<Container maxW="container.lg">
<NewGameBan
isOpen={itemModals.game_ban.isOpen}
onClose={itemModals.game_ban.onClose}
/>
<NewInactivityNotice
departments={pageProps.departments}
isOpen={itemModals.inactivity.isOpen}
Expand All @@ -237,7 +242,14 @@ export default function () {
</Flex>
<Popover placement="top">
<PopoverTrigger>
<Button borderRadius="50%" float="right" h="16" w="16">
<Button
borderRadius="50%"
bottom="10vh"
h="16"
position="absolute"
right="10vh"
w="16"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="32"
Expand Down

0 comments on commit f31dd1d

Please sign in to comment.