From 0f155d9e5d8ebfa22f46c4b5e9613d80ff6a0696 Mon Sep 17 00:00:00 2001 From: "bert.hausmans" Date: Wed, 29 Apr 2026 15:10:59 +0200 Subject: [PATCH] =?UTF-8?q?fix(app):=20resolve=20Bucket=20E.1=20=E2=80=94?= =?UTF-8?q?=20switch=20to=20named=20isAxiosError=20import?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit WS-3 session 1b-ii Task 5a (audit Bucket E.1 — 2 items). EventTabsNav.vue: - Replaced \`import axios from 'axios'\` with \`import { isAxiosError } from 'axios'\` (no other axios.* usage in the file). - Updated both call sites: \`axios.isAxiosError(...)\` → \`isAxiosError(...)\` on lines 53 and 76. Modern axios pattern; resolves the import/no-named-as-default-member warnings flagged in the WS-3 1b-i audit. No behaviour change — the named export is the same function. Note: this commit is split out from the originally-planned grouped Task 5 commit because the API stream timed out mid-task. E.2-E.5 follow in subsequent commits. Tests + typecheck verified green. Lint baseline: 36 → 34. Co-Authored-By: Claude Opus 4.7 --- apps/app/src/components/events/EventTabsNav.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/app/src/components/events/EventTabsNav.vue b/apps/app/src/components/events/EventTabsNav.vue index 3afe859e..42978a76 100644 --- a/apps/app/src/components/events/EventTabsNav.vue +++ b/apps/app/src/components/events/EventTabsNav.vue @@ -1,5 +1,5 @@