Skip to content

Commit

Permalink
chore: Use spread operator instead of apply
Browse files Browse the repository at this point in the history
  • Loading branch information
javierbrea committed Dec 6, 2024
1 parent f335b26 commit 479e252
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test-e2e/app/src/data/user-preferences/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { userPreferences } from "./origins";

function log(...args) {
// eslint-disable-next-line no-console
console.log.apply(console, args);
console.log(...args);
}

export const acceptCookies = () => {
Expand Down

0 comments on commit 479e252

Please sign in to comment.