aboutsummaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/error-msg.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/error-msg.ts b/src/utils/error-msg.ts
index 7325776..832de3c 100644
--- a/src/utils/error-msg.ts
+++ b/src/utils/error-msg.ts
@@ -5,7 +5,7 @@ export default (error?: string | Error): string => {
if (typeof error === 'string') {
str = `🚫 ${error}`;
} else if (error instanceof Error) {
- str = `🚫 error: ${error.name}`;
+ str = `🚫 ope: ${error.name}`;
}
}