fix typo
This commit is contained in:
parent
8a7084ee98
commit
b5bbece10d
2 changed files with 4 additions and 4 deletions
6
dist/bundle.es.js
vendored
6
dist/bundle.es.js
vendored
|
@ -285,7 +285,7 @@ const TOGGLE_BLOCK_CHANNEL = 'TOGGLE_BLOCK_CHANNEL';
|
||||||
// Sync
|
// Sync
|
||||||
const USER_STATE_POPULATE = 'USER_STATE_POPULATE';
|
const USER_STATE_POPULATE = 'USER_STATE_POPULATE';
|
||||||
|
|
||||||
var ACTIONS = /*#__PURE__*/Object.freeze({
|
var action_types = /*#__PURE__*/Object.freeze({
|
||||||
WINDOW_FOCUSED: WINDOW_FOCUSED,
|
WINDOW_FOCUSED: WINDOW_FOCUSED,
|
||||||
DAEMON_READY: DAEMON_READY,
|
DAEMON_READY: DAEMON_READY,
|
||||||
DAEMON_VERSION_MATCH: DAEMON_VERSION_MATCH,
|
DAEMON_VERSION_MATCH: DAEMON_VERSION_MATCH,
|
||||||
|
@ -4351,7 +4351,7 @@ function doCommentUpdate(comment_id, comment) {
|
||||||
} else {
|
} else {
|
||||||
// the result will return null
|
// the result will return null
|
||||||
dispatch({
|
dispatch({
|
||||||
type: undefined
|
type: COMMENT_UPDATE_FAILED
|
||||||
});
|
});
|
||||||
dispatch(doToast({
|
dispatch(doToast({
|
||||||
message: 'Your channel is still being setup, try again in a few moments.',
|
message: 'Your channel is still being setup, try again in a few moments.',
|
||||||
|
@ -5916,7 +5916,7 @@ const selectChannelIsBlocked = uri => reselect.createSelector(selectBlockedChann
|
||||||
return state.includes(uri);
|
return state.includes(uri);
|
||||||
});
|
});
|
||||||
|
|
||||||
exports.ACTIONS = ACTIONS;
|
exports.ACTIONS = action_types;
|
||||||
exports.CLAIM_VALUES = claim;
|
exports.CLAIM_VALUES = claim;
|
||||||
exports.DAEMON_SETTINGS = daemon_settings;
|
exports.DAEMON_SETTINGS = daemon_settings;
|
||||||
exports.DEFAULT_FOLLOWED_TAGS = DEFAULT_FOLLOWED_TAGS;
|
exports.DEFAULT_FOLLOWED_TAGS = DEFAULT_FOLLOWED_TAGS;
|
||||||
|
|
|
@ -182,7 +182,7 @@ export function doCommentUpdate(comment_id: string, comment: string) {
|
||||||
} else {
|
} else {
|
||||||
// the result will return null
|
// the result will return null
|
||||||
dispatch({
|
dispatch({
|
||||||
type: ACTIONS.COMENT_UPDATE_FAILED,
|
type: ACTIONS.COMMENT_UPDATE_FAILED,
|
||||||
});
|
});
|
||||||
dispatch(
|
dispatch(
|
||||||
doToast({
|
doToast({
|
||||||
|
|
Loading…
Add table
Reference in a new issue