You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I encountered an issue while building the project using the npm run build command. The TypeScript compiler throws the following error related to the DropdownLink.vue component:
src/components/ui/navigation/Dropdown/DropdownLink.vue:15:13 - error TS2339: Property 'classes' does not exist on type '{ $: ComponentInternalInstance; $data: {}; $props: { key?: string | number | symbol | undefined; ref?: VNodeRef | undefined; ref_for?: boolean | undefined; ... 10 more ...; readonly handleClick?: (() => void) | undefined; }; ... 10 more ...; $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends...'.
15 :class="classes"
~~~~~~~
The text was updated successfully, but these errors were encountered:
A prop "classes" was being used to help overwrite the component's styling when used in different contexts, the previous update moved the complicated component styles.css so the prop was not being used anymore, and it seems i forgot to remove it from from the DropDownLink.vue component. i removed it in 58a18e6.
I encountered an issue while building the project using the npm run build command. The TypeScript compiler throws the following error related to the DropdownLink.vue component:
src/components/ui/navigation/Dropdown/DropdownLink.vue:15:13 - error TS2339: Property 'classes' does not exist on type '{ $: ComponentInternalInstance; $data: {}; $props: { key?: string | number | symbol | undefined; ref?: VNodeRef | undefined; ref_for?: boolean | undefined; ... 10 more ...; readonly handleClick?: (() => void) | undefined; }; ... 10 more ...; $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends...'.
15 :class="classes"
~~~~~~~
The text was updated successfully, but these errors were encountered: