Skip to content

Commit 688e209

Browse files
authored
Remove executive summary tab (#36)
1 parent 894c013 commit 688e209

File tree

2 files changed

+5
-12
lines changed

2 files changed

+5
-12
lines changed

src/routes/+page.svelte

+5-9
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<script lang="ts">
22
import { Tab, TabGroup } from '@skeletonlabs/skeleton';
33
import PactaIntro from './pacta_intro.svelte';
4-
import ExecutiveSummary from './executive_summary.svelte';
54
import PortfolioView from './portfolio_view.svelte';
65
import SectorView from './sector_view.svelte';
76
import CompanyView from './company_view.svelte';
@@ -11,21 +10,18 @@
1110

1211
<TabGroup>
1312
<Tab bind:group={tabSet} name="pacta_intro" value={0}>PACTA Intro</Tab>
14-
<Tab bind:group={tabSet} name="executive_summary" value={1}>Executive Summary</Tab>
15-
<Tab bind:group={tabSet} name="portfolio_view" value={2}>Portfolio-level Overview</Tab>
16-
<Tab bind:group={tabSet} name="sector_view" value={3}>Sector-level Analysis</Tab>
17-
<Tab bind:group={tabSet} name="company_view" value={4}>Company-level Analysis</Tab>
13+
<Tab bind:group={tabSet} name="portfolio_view" value={1}>Portfolio-level Overview</Tab>
14+
<Tab bind:group={tabSet} name="sector_view" value={2}>Sector-level Analysis</Tab>
15+
<Tab bind:group={tabSet} name="company_view" value={3}>Company-level Analysis</Tab>
1816
<!-- Tab Panels --->
1917
<svelte:fragment slot="panel">
2018
{#if tabSet === 0}
2119
<PactaIntro />
2220
{:else if tabSet === 1}
23-
<ExecutiveSummary />
24-
{:else if tabSet === 2}
2521
<PortfolioView />
26-
{:else if tabSet === 3}
22+
{:else if tabSet === 2}
2723
<SectorView />
28-
{:else if tabSet === 4}
24+
{:else if tabSet === 3}
2925
<CompanyView />
3026
{:else}
3127
<p>Tab not found</p>

src/routes/executive_summary.svelte

-3
This file was deleted.

0 commit comments

Comments
 (0)