Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Moore committed Nov 28, 2024
1 parent 0c05120 commit 3df7c5d
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,12 @@ export const GenericTile = ({
<IconButton
label={infoButtonLabel || `${translatedInfoLabel} ${title}`}
icon={<Icon name="info" isPresentational isFilled />}
onClick={(): void => setIsFlipped(true)}
onClick={(): void => {
setIsFlipped(true)
useEffect(() => {
tileRef.current!.focus()
}, [])
}}
disabled={isFlipped}
aria-hidden={isFlipped}
ref={infoButtonRef}
Expand Down

0 comments on commit 3df7c5d

Please sign in to comment.