fix(lint): unnecessary ternary
This commit is contained in:
@@ -54,7 +54,7 @@ export async function applySubscription (session) {
|
||||
sub,
|
||||
groupId,
|
||||
subscriptionId,
|
||||
autoRenews: gift ? false : true,
|
||||
autoRenews: !Boolean(gift),
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user