Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

Commit

Permalink
fix(gro): Add missing appDefinition wrapper to fix failing build (#397)
Browse files Browse the repository at this point in the history
  • Loading branch information
immasandwich committed May 8, 2022
1 parent 833e81d commit f6e2bd2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/apps/gro/gro.definition.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { Register } from '~app-toolkit/decorators';
import { AppDefinition } from '~app/app.definition';
import { appDefinition, AppDefinition } from '~app/app.definition';
import { AppAction, AppTag } from '~app/app.interface';
import { GroupType } from '~app/app.interface';
import { Network } from '~types/network.interface';

export const GRO_DEFINITION = {
export const GRO_DEFINITION = appDefinition({
id: 'gro',
name: 'gro',
description: 'DeFi yield aggregator that makes it easy to earn stablecoin yields with tranching & automation',
Expand All @@ -28,7 +28,7 @@ export const GRO_DEFINITION = {
[Network.AVALANCHE_MAINNET]: [AppAction.VIEW],
},
primaryColor: '#fff',
};
});

@Register.AppDefinition(GRO_DEFINITION.id)
export class GroAppDefinition extends AppDefinition {
Expand Down

0 comments on commit f6e2bd2

Please sign in to comment.