Fix token tile delete button name

This commit is contained in:
Mitchell McCaffrey 2020-07-02 17:01:08 +10:00
parent 2c60cff0c7
commit 6a1bae3ab3

View File

@ -61,8 +61,8 @@ function TokenTile({ token, isSelected, onTokenSelect, onTokenRemove }) {
{isSelected && !isDefault && (
<Box sx={{ position: "absolute", top: 0, right: 0 }}>
<IconButton
aria-label="Remove Map"
title="Remove Map"
aria-label="Remove Token"
title="Remove Token"
onClick={() => {
onTokenRemove(token.id);
}}