diff --git a/packages/game-client/src/App.jsx b/packages/game-client/src/App.jsx
index 2a35277..2457e18 100644
--- a/packages/game-client/src/App.jsx
+++ b/packages/game-client/src/App.jsx
@@ -101,19 +101,21 @@ function App() {
- {snakeIdList.map((snake, index) => {
- const { id, headColor, bodyColor } = snake;
- return (
-
- );
- })}
+ {snakeIdList
+ .filter((item) => item.id !== allSnakesSelectOption.id)
+ .map((snake, index) => {
+ const { id, headColor, bodyColor } = snake;
+ return (
+
+ );
+ })}