Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
ernstmul committed Oct 10, 2024
1 parent 19c315a commit dfb1abb
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/routes/pricing/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,13 @@
const ogImage = DEFAULT_HOST + '/images/open-graph/website.png';
const pageStateOptions: Array<{ label: string; key: string; isActive?: true }> = [
{ label: 'Cloud', key: 'cloud', isActive: true },
{ label: 'Self hosted', key: 'self-hosted'}
{ label: 'Cloud', key: 'cloud', isActive: true },
{ label: 'Self hosted', key: 'self-hosted' }
];
let activePageState: string = 'cloud';
function changePageState(newPageState: string) {
console.log('triggered');
activePageState = newPageState;
console.log('activePageState', activePageState);
}
</script>

Expand Down

0 comments on commit dfb1abb

Please sign in to comment.