Skip to content

Commit

Permalink
fix: prettier
Browse files Browse the repository at this point in the history
Signed-off-by: axel7083 <[email protected]>
  • Loading branch information
axel7083 committed Feb 15, 2024
1 parent 00f6d60 commit 9c4dc9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/frontend/src/stores/recipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ export const recipes: Readable<Map<string, RecipeStatus>> = readable<Map<string,
studioClient.getPullingStatuses().then(state => {
set(state);
});
}
};

// Initialize the store manually
pull();

// when the tasks are updated we pull the recipe updates
const tasks = rpcBrowser.subscribe(MSG_TASKS_UPDATE, _ => {
pull();
})
});

return () => {
sub.unsubscribe();
Expand Down

0 comments on commit 9c4dc9a

Please sign in to comment.