Skip to content

Commit e1447eb

Browse files
authored
fix: IconSizeNotFoundError message not interpolated
1 parent ca741fd commit e1447eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/icon/icon.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ export class IconNameNotFoundError extends Error {
110110
*/
111111
export class IconSizeNotFoundError extends Error {
112112
constructor(size: string, name: string) {
113-
super("Size ${size} for ${name} not found");
113+
super(`Size ${size} for ${name} not found`);
114114
}
115115
}
116116

0 commit comments

Comments
 (0)