Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions apps/web/app/components/SponsorPageSection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -159,10 +159,8 @@ const personalSponsorInfo: PersonalSponsorInfo = {
<SponsorList v-bind="bronzeSponsors" />
<SponsorList v-bind="specialNamingRightSponsors" />
<SponsorList v-bind="namingRightSponsors" />
<div class="sponsor-list-layout-separate">
<SponsorList v-bind="specialLunchSponsors" />
<SponsorList v-bind="lunchSponsors" />
</div>
<SponsorList v-bind="specialLunchSponsors" />
<SponsorList v-bind="lunchSponsors" />
<div class="sponsor-list-layout-separate">
<SponsorList v-bind="afterPartySponsors" />
<SponsorList v-bind="nameCardSponsors" />
Expand Down
4 changes: 2 additions & 2 deletions apps/web/app/server/api/sponsors.get.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export default defineEventHandler(async (event) => {
}

const specialLunchSponsors: SponsorInfo = {
type: 'option-separate',
type: 'option',
title: 'special_lunch',
list: sponsors
.filter((s: Sponsor) => {
Expand All @@ -119,7 +119,7 @@ export default defineEventHandler(async (event) => {
}

const lunchSponsors: SponsorInfo = {
type: 'option-separate',
type: 'option',
title: 'lunch',
list: sponsors
.filter((s: Sponsor) => {
Expand Down