Skip to content

Commit 28dd361

Browse files
committed
lint
1 parent 56faa79 commit 28dd361

2 files changed

Lines changed: 2 additions & 6 deletions

File tree

  • create-leo-app
    • template-node-loyalty-program-ts/src
    • template-react-loyalty-program-ts/src/workers

create-leo-app/template-node-loyalty-program-ts/src/index.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -768,9 +768,7 @@ class LoyaltyProgram {
768768
* @param voucher - The voucher to check.
769769
* @returns The voucher with its type and value.
770770
*/
771-
async checkVoucher(
772-
voucher: RewardVoucher,
773-
): Promise<{
771+
async checkVoucher(voucher: RewardVoucher): Promise<{
774772
voucher: RewardVoucher;
775773
rewardType: RewardType;
776774
value: number;

create-leo-app/template-react-loyalty-program-ts/src/workers/worker.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -741,9 +741,7 @@ class LoyaltyProgram {
741741
* @param voucher - The voucher to check
742742
* @returns The voucher with its type and value
743743
*/
744-
async checkVoucher(
745-
voucher: RewardVoucher,
746-
): Promise<{
744+
async checkVoucher(voucher: RewardVoucher): Promise<{
747745
voucher: RewardVoucher;
748746
rewardType: RewardType;
749747
value: number;

0 commit comments

Comments
 (0)