From 0e52f4806f34e48e759b067dd5a6c05709248263 Mon Sep 17 00:00:00 2001 From: Trent Larson Date: Mon, 13 Jan 2025 19:02:50 -0700 Subject: [PATCH] fix linting --- src/views/AccountViewView.vue | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/src/views/AccountViewView.vue b/src/views/AccountViewView.vue index 5003366..5248a09 100644 --- a/src/views/AccountViewView.vue +++ b/src/views/AccountViewView.vue @@ -264,9 +264,7 @@ -
+
Loading profile... @@ -1582,15 +1580,12 @@ export default class AccountViewView extends Vue { "Got 400 or 404 response retrieving limits which probably means they're not registered:", error, ); - this.limitsMessage = "No limits found, so no actions are allowed."; + this.limitsMessage = "No limits were found, so no actions are allowed."; } else { const data = error.response?.data as ErrorResponse; this.limitsMessage = (data?.error?.message as string) || "Bad server response."; - console.log( - "Got bad response retrieving limits:", - error, - ); + console.error("Got bad response retrieving limits:", error); } } else { this.limitsMessage = "Got an error retrieving limits.";