Skip to content

Commit

Permalink
fix: misc
Browse files Browse the repository at this point in the history
  • Loading branch information
iib0011 committed Mar 9, 2025
1 parent 372cb95 commit d01e2f0
Show file tree
Hide file tree
Showing 4 changed files with 93 additions and 101 deletions.
2 changes: 0 additions & 2 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

188 changes: 91 additions & 97 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect, test } from '@playwright/test';
import { Buffer } from 'buffer';
import path from 'path';
import Jimp from 'jimp';
import { convertHexToRGBA } from '../../../../../utils/color';
import { convertHexToRGBA } from '@utils/color';

test.describe('Change colors in png', () => {
test.beforeEach(async ({ page }) => {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/tools/string/text-replacer/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function replaceTextWithRegexp(
return text.replace(new RegExp(searchRegexp, 'g'), replaceValue);
}
} catch (err) {
console.error('Invalid regular expression:', err);
// console.error('Invalid regular expression:', err);
return text;
}
}

0 comments on commit d01e2f0

Please sign in to comment.