Skip to content

Commit

Permalink
fix: missing await (#915)
Browse files Browse the repository at this point in the history
  • Loading branch information
3mcd authored Jan 23, 2025
1 parent e3319e9 commit 678e63b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const StagePanelPubsInner = async (props: PropsInner) => {
getStageActions(props.stageId).execute(),
getStage(props.stageId, props.userId).executeTakeFirst(),
]);
const communitySlug = getCommunitySlug();
const communitySlug = await getCommunitySlug();

if (!stage) {
throw new Error("Stage not found");
Expand Down

0 comments on commit 678e63b

Please sign in to comment.