fix: Update model convert toast message

This commit is contained in:
blessedcoolant 2023-07-12 20:44:57 +12:00
parent 2cedf6aed5
commit 683229e285

View File

@ -45,7 +45,7 @@ export default function ModelConvert(props: ModelConvertProps) {
dispatch( dispatch(
addToast( addToast(
makeToast({ makeToast({
title: t('modelManager.modelConversionFailed'), title: `${t('modelManager.modelConversionFailed')}: ${model.name}`,
status: 'error', status: 'error',
}) })
) )
@ -56,7 +56,7 @@ export default function ModelConvert(props: ModelConvertProps) {
dispatch( dispatch(
addToast( addToast(
makeToast({ makeToast({
title: t('modelManager.modelConverted'), title: `${t('modelManager.modelConverted')}: ${model.name}`,
status: 'success', status: 'success',
}) })
) )