diff --git a/interface/src/app/main/Commands.tsx b/interface/src/app/main/Commands.tsx index b734c6c36..4a20e1c39 100644 --- a/interface/src/app/main/Commands.tsx +++ b/interface/src/app/main/Commands.tsx @@ -131,7 +131,7 @@ const CommandsPage = () => { name: ci.name })) }); - toast.success(LL.UPDATED_OF(LL.COMMANDS(0))); + toast.success(LL.UPDATED_OF(LL.COMMANDS())); } catch (error: unknown) { const message = error instanceof Error ? error.message : String(error); toast.error(message); diff --git a/interface/src/app/main/DevicesDialog.tsx b/interface/src/app/main/DevicesDialog.tsx index 314476024..3b98822d8 100644 --- a/interface/src/app/main/DevicesDialog.tsx +++ b/interface/src/app/main/DevicesDialog.tsx @@ -2,6 +2,7 @@ import { useEffect, useState } from 'react'; import { toast } from 'react-toastify'; import CancelIcon from '@mui/icons-material/Cancel'; +import PlayArrowIcon from '@mui/icons-material/PlayArrow'; import WarningIcon from '@mui/icons-material/Warning'; import { Box, @@ -226,10 +227,12 @@ const DevicesDialog = ({ {LL.CANCEL()}