From 960c1abbccb0317d3063456cf3adaad0a726e3c4 Mon Sep 17 00:00:00 2001
From: Regalijan <r@regalijan.com>
Date: Mon, 15 Apr 2024 17:52:04 -0400
Subject: [PATCH] Remove do nothing option from new game ban modal

Why would this ever be used?
---
 components/NewGameBan.tsx | 1 -
 1 file changed, 1 deletion(-)

diff --git a/components/NewGameBan.tsx b/components/NewGameBan.tsx
index 80a5e9c..08551ac 100644
--- a/components/NewGameBan.tsx
+++ b/components/NewGameBan.tsx
@@ -237,7 +237,6 @@ export default function (props: { isOpen: boolean; onClose: () => void }) {
                         onChange={(val) => (actionMap[user] = parseInt(val))}
                       >
                         <VStack alignItems="flex-start">
-                          <Radio value="0">Do Nothing</Radio>
                           <Radio value="1">Hide from Leaderboards</Radio>
                           <Radio value="2">Ban</Radio>
                         </VStack>