diff --git a/src/components/Dashboard/common/StateDisplay.jsx b/src/components/Dashboard/common/StateDisplay.jsx index f4b64c7..6755248 100644 --- a/src/components/Dashboard/common/StateDisplay.jsx +++ b/src/components/Dashboard/common/StateDisplay.jsx @@ -4,7 +4,13 @@ import { Progress, Flex, Space } from 'antd' import StateTag from './StateTag' const StateDisplay = ({ state, showProgress = true, showState = true }) => { - const loadingProgressTypes = ['loading', 'processing', 'queued', 'printing'] + const loadingProgressTypes = [ + 'loading', + 'processing', + 'queued', + 'printing', + 'used' + ] const currentState = state || { type: 'unknown', progress: 0 @@ -23,7 +29,8 @@ const StateDisplay = ({ state, showProgress = true, showState = true }) => { currentState?.progress > 0 ? ( ) : null}