From 7e4afd16b3f6f6dad9268a46538b5c6aa2861e64 Mon Sep 17 00:00:00 2001 From: dadofsambonzuki Date: Tue, 13 Feb 2024 14:17:03 +0000 Subject: [PATCH] Add Plan B Network as Community Organisation --- src/routes/communities/+page.svelte | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/routes/communities/+page.svelte b/src/routes/communities/+page.svelte index 1d74c3d..4b506fb 100644 --- a/src/routes/communities/+page.svelte +++ b/src/routes/communities/+page.svelte @@ -90,6 +90,8 @@ communities && communities.filter((community) => community.tags.organization === 'enogtyve'); $: jednadvacet = communities && communities.filter((community) => community.tags.organization === 'jednadvacet'); + $: planBNetwork = + communities && communities.filter((community) => community.tags.organization === 'plan-b-network'); $: satoshiSpritz = communities && communities.filter((community) => community.tags.organization === 'satoshi-spritz'); @@ -210,6 +212,7 @@ 'Einundzwanzig', 'Enogtyve', 'Jednadvacet', + 'Plan B Network', 'Satoshi Spritz' ]; $: communitySections = [ @@ -250,6 +253,7 @@ { section: 'Einundzwanzig', communities: einundzwanzig }, { section: 'Enogtyve', communities: enogtyve }, { section: 'Jednadvacet', communities: jednadvacet }, + { section: 'Plan B Network', communities: planBNetwork }, { section: 'Satoshi Spritz', communities: satoshiSpritz } ];