Skip to content

Commit

Permalink
Fix rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
ggrossetie committed Dec 1, 2021
1 parent 8397433 commit 22635be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion front/gatsby/src/createReduxStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const reducer = createReducer(initialState, {
UPDATE_ARTICLE_BIB: updateArticleBib,

// user preferences reducers
USER_PREFERENCES_TOGGLE: toggleUserPreferences
USER_PREFERENCES_TOGGLE: toggleUserPreferences,

SET_ARTICLE_VERSIONS: setArticleVersions,
SET_WORKING_ARTICLE_UPDATED_AT: setWorkingArticleUpdatedAt,
Expand Down
2 changes: 1 addition & 1 deletion front/gatsby/src/layouts/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default function StyloApp (props) {
const hasBooted = useSelector(state => state.hasBooted)
const { layout, shell = true } = props

let styles = shell === false ? allStyles.fullPage : allStyles[layout]
const styles = shell === false ? allStyles.fullPage : allStyles[layout]

return (
<div className={styles.grid}>
Expand Down

0 comments on commit 22635be

Please sign in to comment.