diff --git a/src/components/ApplicationContent.tsx b/src/components/ApplicationContent.tsx index 97a14c8..1ae1ac3 100644 --- a/src/components/ApplicationContent.tsx +++ b/src/components/ApplicationContent.tsx @@ -1,5 +1,5 @@ import { TextDisplay } from "components-jsx/TextDisplay"; -import { Response } from "~/types"; +import { Response } from "~/utils/types"; export function ApplicationContent(props: { response: Response; diff --git a/src/components/PendingApplicationMessage.tsx b/src/components/PendingApplicationMessage.tsx index e5f6565..80ebe71 100644 --- a/src/components/PendingApplicationMessage.tsx +++ b/src/components/PendingApplicationMessage.tsx @@ -5,16 +5,19 @@ import { Container } from "components-jsx/Container"; import { Divider } from "components-jsx/Divider"; import { TextDisplay } from "components-jsx/TextDisplay"; import { ButtonStyles, User as OUser } from "oceanic.js"; -import { Response } from "~/types"; +import { Response } from "~/utils/types"; import { User } from "./User"; import { Constants } from "~/Constants"; import { ApplicationContent } from "./ApplicationContent"; +import { StringSelect } from "components-jsx/StringSelect"; +import { rejectReasons } from "~/utils/rejectReasons"; export function PendingApplicationMessage(props: { id: string; user: OUser; response: Response; locked?: boolean; + threadID: string; }) { const { id, user, response } = props; const locked = props.locked || false; @@ -30,83 +33,84 @@ export function PendingApplicationMessage(props: { - - - - ### Details -
- {response.details} -
- - - - - - - - - - - - - + + +