forked from FoundKeyGang/FoundKey
client: add space between endpoint and code in error message
This commit is contained in:
parent
35e9d7f958
commit
4bb814adfc
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ export const apiWithDialog = ((
|
|||
promiseDialog(promise, null, (err) => {
|
||||
alert({
|
||||
type: 'error',
|
||||
text: (err.message + '\n' + (err?.endpoint ?? '') + (err?.code ?? '')).trim(),
|
||||
text: (err.message + '\n' + (err?.endpoint ?? '') + ' ' + (err?.code ?? '')).trim(),
|
||||
});
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue