Skip to content

Commit

Permalink
make format
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaspiterek committed Feb 19, 2024
1 parent c3ba633 commit 6aa7792
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/View.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const View = (props) => {
slateSettings: {
...config.settings.slate,
toolbarButtons: config.settings.slate.toolbarButtons.filter(
(index) => index - config.settings.slate.toolbarButtons
(index) => index - config.settings.slate.toolbarButtons,
),
},
};
Expand Down
2 changes: 1 addition & 1 deletion src/components/schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const QuoteBlockSchema = ({ intl }) => {
const filterDefaultLanguages = () => {
if (allowedLanguages) {
return DEFAULT_LANGUAGES.filter((item) =>
allowedLanguages.includes(item[0])
allowedLanguages.includes(item[0]),
);
} else {
return DEFAULT_LANGUAGES;
Expand Down

0 comments on commit 6aa7792

Please sign in to comment.