Add spaces around union pipe

This commit is contained in:
Alex Gleason 2024-06-04 22:57:44 +00:00
parent f1d6d32f92
commit 6734254630
1 changed files with 1 additions and 1 deletions

View File

@ -314,7 +314,7 @@ const undislikeFail = (status: StatusEntity, error: unknown) => ({
skipLoading: true,
});
const zap = (account: AccountEntity, status: StatusEntity|undefined, amount: number, comment: string) => (dispatch: AppDispatch, getState: () => RootState) => {
const zap = (account: AccountEntity, status: StatusEntity | undefined, amount: number, comment: string) => (dispatch: AppDispatch, getState: () => RootState) => {
if (!isLoggedIn(getState)) return;
if (status) dispatch(zapRequest(status));