Skip to content

Commit

Permalink
chore: prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
zaibod authored and Elscrux committed Jan 20, 2025
1 parent 66f3417 commit ffae251
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/solvers/Graph/ProblemNode.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ export function ProblemNode(props: NodeProps<ProblemNodeData>) {
const solverId = props.data.problemDtos[0].solverId;
const solver = solvers[typeId]?.find((s) => s.id === solverId);
const solverName = solver?.name;
const solverDescription = solver?.description ??
"Solves the ${typeId} Problem.";
const solverDescription =
solver?.description ?? "Solves the ${typeId} Problem.";

// Fetch solvers for type if necessary
getSolvers(typeId);
Expand Down

0 comments on commit ffae251

Please sign in to comment.