Skip to content

Commit

Permalink
feat: suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
joaodiaslobo committed Feb 3, 2024
1 parent 644249a commit 3f4e9c9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 1 addition & 3 deletions layout/Attendee/Slots/components/Machine/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ const numIcons = slots.symbols;
// Size of the icons
var iconSize = 79;

interface MachineProps {}

interface MachineRef {
rollAll: (multiplier: any) => Promise<void>;
}
Expand Down Expand Up @@ -50,7 +48,7 @@ const getReelsTarget = (multiplier) => {
return target;
};

const Machine = forwardRef<MachineRef, MachineProps>((props, ref) => {
const Machine = forwardRef<MachineRef>((_, ref) => {
const machineRef = useRef(null);
const [indexes, setIndexes] = useState([1, 1, 1]);

Expand Down
2 changes: 0 additions & 2 deletions layout/Attendee/Slots/components/SlotsMessage/index.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import { Dialog } from "@headlessui/react";
import { useRouter } from "next/router";

export default function SlotsMessage({ title, description, onExit }) {
const router = useRouter();
return (
<>
<div className="fixed inset-0 z-30 h-full w-screen bg-white opacity-70"></div>
Expand Down

0 comments on commit 3f4e9c9

Please sign in to comment.