Skip to content

Commit

Permalink
fix(Models): fix AppInstallations not updating in React
Browse files Browse the repository at this point in the history
  • Loading branch information
mfal committed Sep 26, 2024
1 parent d8f0554 commit 4bc63d9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/models/src/app/AppInstallation/AppInstallation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,9 @@ export class AppInstallationListQuery extends ListQueryModel<AppInstallationList
project: Project,
query: AppInstallationListQueryData = {},
) {
super(query);
super(query, {
dependencies: [project.id],
});
this.project = project;
}

Expand Down

0 comments on commit 4bc63d9

Please sign in to comment.