Skip to content

Commit

Permalink
deleted unused popups and banners
Browse files Browse the repository at this point in the history
  • Loading branch information
5450L committed Sep 20, 2024
1 parent 923aa59 commit c4d53db
Show file tree
Hide file tree
Showing 13 changed files with 0 additions and 2,888 deletions.
2 changes: 0 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
</div>
<NotificationContainer />
<PopupsWrapper />
<Banner />
<SkullBanner />
<OldAllowanceBanner />
<TenderlyMod />
Expand Down Expand Up @@ -98,7 +97,6 @@ export default {
PopupsWrapper: defineAsyncComponent(() =>
import("@/components/popups/PopupsWrapper.vue")
),
Banner: defineAsyncComponent(() => import("@/components/ui/Banner.vue")),
MlpMigrationBanner: defineAsyncComponent(() =>
import("@/components/ui/MlpMigrationBanner.vue")
),
Expand Down
41 changes: 0 additions & 41 deletions src/components/popups/ClaimPopup.test.ts

This file was deleted.

143 changes: 0 additions & 143 deletions src/components/popups/ClaimPopup.vue

This file was deleted.

8 changes: 0 additions & 8 deletions src/components/popups/PopupsWrapper.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,8 @@
<CrvStakePopup v-if="popupActiveType === '3crv'" />

<SucessPopup v-if="popupActiveType === 'success'" />
<ClaimPopup v-if="popupActiveType === 'claim'" />
<RouteOptimisationPopup v-if="popupActiveType === 'mglp-route'" />
<ApprovalsPopup v-if="popupActiveType === 'approvals'" />
<BlastLpMigration v-if="popupActiveType === 'mlp-migration'" />
</div>
</div>
</template>
Expand All @@ -33,18 +31,12 @@ export default {
SucessPopup: defineAsyncComponent(() =>
import("@/components/popups/SuccessPopup.vue")
),
ClaimPopup: defineAsyncComponent(() =>
import("@/components/popups/ClaimPopup.vue")
),
RouteOptimisationPopup: defineAsyncComponent(() =>
import("@/components/popups/RouteOptimisationPopup.vue")
),
ApprovalsPopup: defineAsyncComponent(() =>
import("@/components/popups/ApprovalsPopup.vue")
),
BlastLpMigration: defineAsyncComponent(() =>
import("@/components/popups/migration/BlastLpMigration.vue")
),
},
};
</script>
Expand Down
Loading

0 comments on commit c4d53db

Please sign in to comment.