Skip to content

Commit 4571050

Browse files
committed
Reverse arrow directions
1 parent 75dfb95 commit 4571050

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

frontend/src/app/collaboration/components/question.tsx

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,9 @@ const Question = ({
152152
});
153153

154154
client.subscribe("/user/queue/language", (message) => {
155-
const messageReceived: SingleChatLogApiResponse = JSON.parse(message.body);
155+
const messageReceived: SingleChatLogApiResponse = JSON.parse(
156+
message.body
157+
);
156158
isLanguageChangeActive.current = false;
157159
setLanguage(messageReceived.message);
158160
Swal.fire({
@@ -360,7 +362,9 @@ const Question = ({
360362
</Button>
361363
</div>
362364
<span className="row-span-1 text-primary-300 text-md max-h-[100%] h-full overflow-y-auto flex flex-col gap-2 bg-primary-800 p-3 rounded-md">
363-
<span className="text-yellow-500 font-bold text-md">Question Description</span>
365+
<span className="text-yellow-500 font-bold text-md">
366+
Question Description
367+
</span>
364368
<span className="text-white py-2 text-xs">{question?.description}</span>
365369
<span className="text-yellow-500 font-bold text-md">Examples</span>
366370
{question?.examples?.map((example, idx) => (
@@ -394,7 +398,7 @@ const Question = ({
394398
className="mb-3"
395399
>
396400
{showAnswer ? "Hide" : "Show"} Answer
397-
{showAnswer ? " " : " "}
401+
{showAnswer ? " " : " "}
398402
</Button>
399403
{showAnswer && question?.solution && (
400404
<div className="h-[50px] text-sm">

0 commit comments

Comments
 (0)