Skip to content

Commit 7a89b3f

Browse files
committed
fixes
1 parent 3d2f4ca commit 7a89b3f

4 files changed

Lines changed: 0 additions & 94 deletions

File tree

backend/api/cms/page/blocks/dynamic_content_display_section.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ class DynamicContentDisplaySectionSource(enum.Enum):
99
speakers = "speakers"
1010
keynoters = "keynoters"
1111
proposals = "proposals"
12-
local_communities = "local_communities"
1312

1413

1514
@register_page_block()

backend/cms/components/page/blocks/dynamic_content_display_section.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,5 @@ class DynamicContentDisplaySection(blocks.StructBlock):
77
("speakers", "Speakers"),
88
("keynoters", "Keynoters"),
99
("proposals", "Proposals"),
10-
("local_communities", "Local Communities"),
1110
],
1211
)

frontend/src/components/blocks/dynamic-content-display-section/index.tsx

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import {
55
queryKeynotesSection,
66
} from "~/types";
77
import { KeynotersContent } from "./keynoters-content";
8-
import { LocalCommunitiesContent } from "./local-communities-content";
98
import { ProposalsContent } from "./proposals-content";
109
import { SpeakersContent } from "./speakers-content";
1110

@@ -25,9 +24,6 @@ export const DynamicContentDisplaySection = ({
2524
{source === DynamicContentDisplaySectionSource.Proposals && (
2625
<ProposalsContent />
2726
)}
28-
{source === DynamicContentDisplaySectionSource.LocalCommunities && (
29-
<LocalCommunitiesContent />
30-
)}
3127
</Fragment>
3228
);
3329
};
@@ -60,9 +56,6 @@ DynamicContentDisplaySection.dataFetching = (client, language, block) => {
6056
}),
6157
];
6258
}
63-
case DynamicContentDisplaySectionSource.LocalCommunities: {
64-
return [];
65-
}
6659
}
6760

6861
return [];

frontend/src/components/blocks/dynamic-content-display-section/local-communities-content.tsx

Lines changed: 0 additions & 85 deletions
This file was deleted.

0 commit comments

Comments
 (0)