Skip to content

Commit 5f0ae25

Browse files
committed
fix: error message "Unable to delete team"
Added braces around the parameter {circleId}. This should fix the issue where the literal message "Unable to delete team {circleId}" is displayed. Partial fix for #4680. The error message is no longer broken, but still not very helpful. Signed-off-by: Kilian Evang <noreply@texttheater.net>
1 parent cc09fa8 commit 5f0ae25

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/store/circles.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ const actions = {
213213
context.dispatch('updateCirclesPopulationCount')
214214
} catch (error) {
215215
console.error(error)
216-
showError(t('contacts', 'Unable to delete team {circleId}', circleId))
216+
showError(t('contacts', 'Unable to delete team {circleId}', { circleId }))
217217
}
218218
},
219219

0 commit comments

Comments
 (0)