Skip to content

Commit

Permalink
fix[App]: remove preloading redundancy
Browse files Browse the repository at this point in the history
  • Loading branch information
Fredrik Marjoni committed Apr 8, 2026
1 parent ed93b95 commit c5c3ce9
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/main/java/edu/group5/app/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,6 @@ public void init() {
UserService userService = new UserService(this.userRepository);
DonationService donationService = new DonationService(this.donationRepository, organizationRepository);
OrganizationService organizationService = new OrganizationService(organizationRepository);

// Pre-load logos in background so they're ready when user views causes page
organizationService.getTrustedOrganizationsWithLogosAsync();

this.root = new BorderPane();
this.appState = new AppState();
this.nav = new NavigationController(root, appState, userService, donationService, organizationService);
Expand Down

0 comments on commit c5c3ce9

Please sign in to comment.