Skip to content

Commit 5bc8da9

Browse files
committed
fix: eslint
1 parent 239b7e0 commit 5bc8da9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/image-to-css/image-to-css.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { stringToUrl } from 'svg-to-url';
33
export type CSSType = 'Background' | 'Border' | 'ListItemBullet' | 'Url';
44

55
async function fileToDataUrl(file: File) {
6-
if (file.type === 'image/svg+xml'){
6+
if (file.type === 'image/svg+xml') {
77
const svgContent = (await (new Promise<string>((resolve, reject) => {
88
const reader = new FileReader();
99
reader.readAsText(file);

0 commit comments

Comments
 (0)