Skip to content

Commit 2a2eb09

Browse files
committed
Prettier and lint
1 parent 44ff320 commit 2a2eb09

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

lego-webapp/redux/slices/comments.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
import { createSlice } from '@reduxjs/toolkit';
2-
import { AnyAction } from 'redux';
1+
import { createSlice, AnyAction } from '@reduxjs/toolkit';
32
import { createSelector } from 'reselect';
43
import { Comment as CommentAT } from '~/redux/actionTypes';
54
import createLegoAdapter from '~/redux/legoAdapter/createLegoAdapter';

lego-webapp/redux/slices/websockets.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ const websocketsSlice = createSlice({
3939
});
4040
addCase(WebsocketsAT.CLOSED, (state) => {
4141
state.status = STATUS_INITIAL;
42-
state.groups = []
42+
state.groups = [];
4343
});
4444
addCase(WebsocketsAT.ERROR, (state) => {
4545
state.status = STATUS_ERROR;
46-
state.groups = []
46+
state.groups = [];
4747
});
4848
addCase(WebsocketsAT.GROUP_JOIN.BEGIN, (state, action) => {
4949
if (!setGroupStatus(state, action, STATUS_PENDING))

0 commit comments

Comments
 (0)