Skip to content

Commit 598590e

Browse files
committed
update layout (special-lunch, lunch)
1 parent b67ca7c commit 598590e

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

apps/web/app/components/SponsorPageSection.vue

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -159,10 +159,8 @@ const personalSponsorInfo: PersonalSponsorInfo = {
159159
<SponsorList v-bind="bronzeSponsors" />
160160
<SponsorList v-bind="specialNamingRightSponsors" />
161161
<SponsorList v-bind="namingRightSponsors" />
162-
<div class="sponsor-list-layout-separate">
163-
<SponsorList v-bind="specialLunchSponsors" />
164-
<SponsorList v-bind="lunchSponsors" />
165-
</div>
162+
<SponsorList v-bind="specialLunchSponsors" />
163+
<SponsorList v-bind="lunchSponsors" />
166164
<div class="sponsor-list-layout-separate">
167165
<SponsorList v-bind="afterPartySponsors" />
168166
<SponsorList v-bind="nameCardSponsors" />

apps/web/app/server/api/sponsors.get.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export default defineEventHandler(async (event) => {
105105
}
106106

107107
const specialLunchSponsors: SponsorInfo = {
108-
type: 'option-separate',
108+
type: 'option',
109109
title: 'special_lunch',
110110
list: sponsors
111111
.filter((s: Sponsor) => {
@@ -119,7 +119,7 @@ export default defineEventHandler(async (event) => {
119119
}
120120

121121
const lunchSponsors: SponsorInfo = {
122-
type: 'option-separate',
122+
type: 'option',
123123
title: 'lunch',
124124
list: sponsors
125125
.filter((s: Sponsor) => {

0 commit comments

Comments
 (0)