Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Place longer text in description instead of title
  • Loading branch information
regalijan committed Oct 19, 2023
1 parent 1464c92 commit 2964beb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/routes/mod-queue.tsx
Expand Up @@ -167,11 +167,11 @@ export default function () {

if (!itemReq.ok) {
toast({
description: ((await itemReq.json()) as { error: string }).error,
description: "Failed to load item with id " + itemId,
duration: 10000,
isClosable: true,
status: "error",
title: "Failed to load item with id " + itemId,
title: ((await itemReq.json()) as { error: string }).error,
});
} else {
const itemData: { [k: string]: any } = await itemReq.json();
Expand Down

0 comments on commit 2964beb

Please sign in to comment.