Skip to content
Snippets Groups Projects
Verified Commit c6a18b63 authored by João Magalhães's avatar João Magalhães :rocket:
Browse files

fix: start and select buttons order

parent bf3b7e55
No related branches found
No related tags found
No related merge requests found
Pipeline #1576 passed
......@@ -201,18 +201,18 @@ export const KeyboardGB: FC<KeyboardGBProps> = ({
</div>
<div className="break"></div>
<div className="options">
{renderKey(
"START",
"Start",
selectedKeys.includes("Start"),
["start"]
)}
{renderKey(
"SELECT",
"Select",
selectedKeys.includes("Select"),
["select"]
)}
{renderKey(
"START",
"Start",
selectedKeys.includes("Start"),
["start"]
)}
</div>
</div>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment