Skip to content

Commit

Permalink
fix: lint in plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
zoey-kaiser authored Sep 18, 2024
1 parent b0ad984 commit 882061f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/runtime/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,11 @@ export default defineNuxtPlugin(async (nuxtApp) => {
lastRefreshedAt.value = sessionData?.lastRefreshedAt
data.value = sessionData?.data
rawToken.value = cookieToken.value
} catch (error) {
}

Check failure on line 47 in src/runtime/plugin.ts

View workflow job for this annotation

GitHub Actions / test-module

Trailing spaces not allowed
catch (error) {
console.error('Failed to parse session data from cookie:', error)
} finally {
}

Check failure on line 50 in src/runtime/plugin.ts

View workflow job for this annotation

GitHub Actions / test-module

Trailing spaces not allowed
finally {
loading.value = false
}
}
Expand Down

0 comments on commit 882061f

Please sign in to comment.