Skip to content

Commit

Permalink
refactor: change sponsorship structure (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
mirumodapon authored and rileychh committed Feb 3, 2025
1 parent 37971ee commit e9b9c65
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup>
import { addons, sponsorLevels } from '../data/sponsorship'
import { addons, sponsorLevels } from '#data/sponsorship'
function handlePrint() {
const printContent = document.getElementById('addons-table').innerHTML
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup>
import { marked } from 'marked'
import { faqList } from '../data/sponsorship'
import { faqList } from '#data/sponsorship'
function toggleAnswer(index) {
faqList.value[index].isOpen = !faqList.value[index].isOpen
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup>
import { marked } from 'marked'
import { sponsors } from '../data/sponsorship'
import { sponsors } from '#data/sponsorship'
function handlePrint() {
const printContent = document.getElementById('sponsorship-table').innerHTML
Expand Down
File renamed without changes.

0 comments on commit e9b9c65

Please sign in to comment.