Remove unnecessary nullish coalescing (#12058)
This commit is contained in:
@@ -148,7 +148,7 @@ export class ReactionService {
|
||||
reaction = FALLBACK;
|
||||
}
|
||||
} else {
|
||||
reaction = this.normalize(reaction ?? null);
|
||||
reaction = this.normalize(reaction);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user