Skip to content

Commit

Permalink
Tidy Up
Browse files Browse the repository at this point in the history
  • Loading branch information
dquilter committed Mar 3, 2025
1 parent e6ccacb commit 78a4177
Showing 1 changed file with 8 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
import { useGame } from '@/app/_contexts/Game.context';
import { usePopup } from '@/app/_contexts/Popup.context';
import { Autocomplete, Box, Button, IconButton, MenuItem, Select, TextField, Typography } from '@mui/material';
import {
Autocomplete,
Box,
Button,
IconButton,
TextField,
Typography
} from '@mui/material';
import { MouseEvent, useState } from 'react';
import { BiMinus, BiPlus } from 'react-icons/bi';
import {
Expand Down Expand Up @@ -58,15 +65,6 @@ export const DropdownPopupModal = ({ data }: ButtonProps) => {
}}
/>

<Select value={selectedOption} sx={{ width: '50%', color: 'white' }}

onChange={handleChange}>
{data.options.map((option, index) => (
<MenuItem key={index} value={option}>
{option}
</MenuItem>
))}
</Select>
<Box sx={footerStyle}>
<Button
onClick={handleDone}
Expand Down

0 comments on commit 78a4177

Please sign in to comment.