chore: lint

This commit is contained in:
karishmas6
2024-08-10 21:25:17 +05:30
parent 47148e1863
commit 45df4655ae

View File

@@ -82,7 +82,7 @@ export const RightSidePanel = () => {
const getListSettingsObject = useCallback(() => {
let settings: { listSelector?: string; fields?: Record<string, { selector: string; tag?: string; [key: string]: any }> } = {};
let settings: { listSelector?: string; fields?: Record<string, { selector: string; tag?: string;[key: string]: any }> } = {};
browserSteps.forEach(step => {
if (step.type === 'list' && step.listSelector && Object.keys(step.fields).length > 0) {
@@ -100,7 +100,7 @@ export const RightSidePanel = () => {
settings = {
listSelector: step.listSelector,
fields: fields
};
};
}
});