Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
JGantts committed Mar 1, 2024
1 parent d40d74f commit 50625c9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
Empty file removed src/Curtain/Common.ts
Empty file.
1 change: 1 addition & 0 deletions src/Curtain/Curtain.vue
Original file line number Diff line number Diff line change
Expand Up @@ -741,6 +741,7 @@ function gaussianDistributionAt(variance: number, oneOverSqrtTwoPiVariance: numb
onMounted(async () => {
console.log("Hello, world!")
//@ts-expect-error
canvasElement = canvasRef.value
canvasContext = canvasElement.getContext("2d")!
})
Expand Down
3 changes: 2 additions & 1 deletion src/components/Background.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script setup lang="ts">
import { ref, onMounted } from 'vue'
import Curtain from '@/Curtain/Curtain.vue';
import Curtain from '../Curtain/Curtain.vue';
import type { Color } from '../Curtain/Types';
Expand Down Expand Up @@ -204,6 +204,7 @@ const reload2 = async () => {
function loadNext(
element1: Element|null,
element2: Element|null,
//@ts-expect-error
curtainNext: Curtain|null
) {
let classList1 = element1?.classList
Expand Down

0 comments on commit 50625c9

Please sign in to comment.