diff --git a/client/src/components/infoview/goals.tsx b/client/src/components/infoview/goals.tsx index 01f3a2a1..bb56ad50 100644 --- a/client/src/components/infoview/goals.tsx +++ b/client/src/components/infoview/goals.tsx @@ -268,7 +268,7 @@ interface GoalsProps { export function Goals({ goals, filter }: GoalsProps) { if (goals.goals.length === 0) { - return <>No goals + return <> } else { return <> {goals.goals.map((g, i) => )} diff --git a/client/src/components/infoview/main.tsx b/client/src/components/infoview/main.tsx index 74c8df15..d5b56487 100644 --- a/client/src/components/infoview/main.tsx +++ b/client/src/components/infoview/main.tsx @@ -232,7 +232,11 @@ export function Main(props: { world: string, level: number, data: LevelInfo}) { ret =

{serverStoppedResult.message}

{serverStoppedResult.reason}

} else { ret =
- {proof.completed &&
Level completed! 🎉
} + {proof.completedWithWarnings && +
+ {proof.completed ? "Level completed! 🎉" : "Level completed with warnings 🎭"} +
+ }