Skip to content

Commit

Permalink
Fixes ESLint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
cmiqueo committed Dec 5, 2024
1 parent 8a57740 commit 19afb2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/send-to-caas/bulk-publish-to-caas.beta.js
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ const processData = async (data, accessToken) => {
errorArr.push([pageUrl, response]);
}
} catch (e) {
errorArr.push([pageUrl, e.message]);
errorArr.push(['Error:', e.message]);
}
}

Expand Down Expand Up @@ -343,7 +343,7 @@ const resetAdvancedOptions = () => {

const setTheme = () => {
const theme = localStorage.getItem('bp-theme');
const useDarkTheme = theme === 'dark'
const useDarkTheme = theme === 'dark'
|| (theme !== 'light' && window.matchMedia('(prefers-color-scheme: dark)').matches);

if (useDarkTheme) {
Expand Down

0 comments on commit 19afb2a

Please sign in to comment.