+
+
+
+
diff --git a/client/src/components/circle/CircleDiagram.vue b/client/src/components/circle/CircleDiagram.vue
index dcb2f49b..1eb10a51 100644
--- a/client/src/components/circle/CircleDiagram.vue
+++ b/client/src/components/circle/CircleDiagram.vue
@@ -5,20 +5,6 @@ import * as _ from 'underscore'
import {useCircleStore} from '@/stores/circle';
import * as log from 'loglevel';
-const props = defineProps<{
- width: {
- default: 500,
- type: number,
- required: false
-
- },
- height: {
- default: 500,
- type: number,
- required: false
- },
-}>()
-
const circleStore = useCircleStore();
function someFinished(learningSequence) {
@@ -70,12 +56,12 @@ const blue900 = '#00224D',
sky400 = '#72CAFF',
sky500 = '#41B5FA'
-function render() {
- const width = 450, //props.width,
- height = 450, //props.height,
- radius: number = Math.min(width, height) / 2.4,
- arrowStrokeWidth = 2
+const width = 450
+const height = 450
+const radius = Math.min(width, height) / 2.4
+function render() {
+ const arrowStrokeWidth = 2
const svg = d3.select('.circle-visualization')
.attr('viewBox', `0 0 ${width} ${height}`)
@@ -224,6 +210,8 @@ function render() {
{{ pieData }}
{{render()}}
diff --git a/client/src/router/guards.ts b/client/src/router/guards.ts
index 80596c46..9fe06bfd 100644
--- a/client/src/router/guards.ts
+++ b/client/src/router/guards.ts
@@ -1,14 +1,13 @@
-import type {NavigationGuardWithThis, RouteLocationNormalized} from 'vue-router';
-import {useUserStore} from '@/stores/user';
-
+import type { NavigationGuardWithThis, RouteLocationNormalized } from 'vue-router'
+import { useUserStore } from '@/stores/user'
export const updateLoggedIn: NavigationGuardWithThis