diff --git a/__tests__/users.ts b/__tests__/users.ts index e9db5d88b2..4079b7550a 100644 --- a/__tests__/users.ts +++ b/__tests__/users.ts @@ -1624,7 +1624,7 @@ describe('streak recovery mutation', () => { expect(userTransaction!.flags.note).toEqual('Streak restore'); }); - it('should recover streak with 100 points on the second time', async () => { + it('should recover streak with 150 points on the second time', async () => { loggedUser = '1-srm'; const yesterday = subDays(new Date(), 1); await con.getRepository(UserStreakAction).save([ @@ -1650,7 +1650,7 @@ describe('streak recovery mutation', () => { { sender: { id: systemUser.id, type: EntityType.SYSTEM }, receiver: { id: loggedUser, type: EntityType.USER }, - amount: 100, + amount: 150, }, ], }); diff --git a/src/types.ts b/src/types.ts index 7ff34dade2..d9f12ca9cc 100644 --- a/src/types.ts +++ b/src/types.ts @@ -290,7 +290,7 @@ export type GeoRecord = Partial<{ export enum StreakRestoreCoresPrice { First = 0, - Regular = 100, + Regular = 150, } /**