Skip to content

Commit

Permalink
soviet union = ussr
Browse files Browse the repository at this point in the history
  • Loading branch information
anish-lakkapragada committed Mar 1, 2022
1 parent 5f94d6e commit f6a8353
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,9 @@
</header>


{#if (currentTopic != null && currentTopic?.toUpperCase() == endTopic?.toUpperCase()) || (movesLeft == 0)}
{#if (currentTopic != null && currentTopic?.toUpperCase() == endTopic?.toUpperCase()) || (currentTopic?.toUpperCase().includes(endTopic?.toUpperCase())) || (movesLeft == 0)}
<!-- when u won or lost-->
<End topic={currentTopic} moves={numMoves - movesLeft} won={currentTopic?.toUpperCase() == endTopic?.toUpperCase()} startingTopic={startTopic} endingTopic={endTopic} on:retry={reset}/>
<End topic={currentTopic} moves={numMoves - movesLeft} won={currentTopic?.toUpperCase() == endTopic?.toUpperCase() || currentTopic?.toUpperCase().includes(endTopic?.toUpperCase())} startingTopic={startTopic} endingTopic={endTopic} on:retry={reset}/>
{/if}

{#if !hasStarted}
Expand Down

0 comments on commit f6a8353

Please sign in to comment.