Skip to content

Commit 24a0f53

Browse files
committed
chore: fixed the leftover lint issues.
1 parent f86316e commit 24a0f53

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

infrastructure/web3-adapter/src/mapper/mapper.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
import type { IMappingConversionOptions, IMapperResponse } from "./mapper.types";
1+
import type {
2+
IMappingConversionOptions,
3+
IMapperResponse,
4+
} from "./mapper.types";
25

36
export function getValueByPath(obj: Record<string, any>, path: string): any {
47
// Handle array mapping case (e.g., "images[].src")

platforms/pictique/src/lib/fragments/Header/Header.svelte

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
options?: { name: string; handler: () => void }[];
1313
}
1414
15-
const { variant, isCallBackNeeded, callback, heading, options, ...restProps }: IHeaderProps =
16-
$props();
15+
const { variant, isCallBackNeeded, callback, heading, ...restProps }: IHeaderProps = $props();
1716
1817
const variantClasses = {
1918
primary: {

0 commit comments

Comments
 (0)