Display user badges

This commit is contained in:
Evan Hahn
2021-11-02 18:01:13 -05:00
committed by GitHub
parent 927c22ef73
commit f647c4e053
95 changed files with 2891 additions and 424 deletions

View File

@@ -5,6 +5,7 @@ import type { actions as accounts } from './ducks/accounts';
import type { actions as app } from './ducks/app';
import type { actions as audioPlayer } from './ducks/audioPlayer';
import type { actions as audioRecorder } from './ducks/audioRecorder';
import type { actions as badges } from './ducks/badges';
import type { actions as calling } from './ducks/calling';
import type { actions as composer } from './ducks/composer';
import type { actions as conversations } from './ducks/conversations';
@@ -25,6 +26,7 @@ export type ReduxActions = {
app: typeof app;
audioPlayer: typeof audioPlayer;
audioRecorder: typeof audioRecorder;
badges: typeof badges;
calling: typeof calling;
composer: typeof composer;
conversations: typeof conversations;