diff --git a/src/components/dashboardComponents/GameThumbnail.tsx b/src/components/dashboardComponents/GameThumbnail.tsx
index 26a9994..fbe750c 100644
--- a/src/components/dashboardComponents/GameThumbnail.tsx
+++ b/src/components/dashboardComponents/GameThumbnail.tsx
@@ -7,11 +7,10 @@ import SteamAndDeckLogo from "../helperComponents/SteamAndDeckLogo";
interface Props {
game: Data
- onToggle: () => void
playState: string
}
-export default function GameThumbnail({ onToggle, game, playState }: Props) {
+export default function GameThumbnail({ game, playState }: Props) {
const gameLink = game.accessedBy[0].store.includes('Steam') && game.steamId.length > 0 ? game.steamId : game._id
return (
@@ -21,8 +20,6 @@ export default function GameThumbnail({ onToggle, game, playState }: Props) {
>
diff --git a/src/components/dashboardComponents/GameThumbnailContextMenu.tsx b/src/components/dashboardComponents/GameThumbnailContextMenu.tsx
index 618e060..c61845d 100644
--- a/src/components/dashboardComponents/GameThumbnailContextMenu.tsx
+++ b/src/components/dashboardComponents/GameThumbnailContextMenu.tsx
@@ -13,7 +13,7 @@ interface Props {
}
const GameThumbnailContextMenu = ({ game }: Props) => {
- const { open: isOpen, onToggle } = useDisclosure()
+ const { open: isOpen, onOpen, onClose } = useDisclosure()
const [playState, setPlayState] = useState(game.accessedBy[0].playStatus)
const gameLink = game.steamId.length > 1 ? game.steamId : game._id
@@ -44,13 +44,15 @@ const GameThumbnailContextMenu = ({ game }: Props) => {
transitionDuration={'1'}
transitionTimingFunction={'ease-in-out'}
_hover={{ boxShadow: '2xl', transform: 'translateY(-3px)' }}
+ onMouseEnter={onOpen}
+ onMouseLeave={onClose}
>
-
+
-
+
Open in New Tab