chore: lint

This commit is contained in:
karishmas6
2024-09-06 09:32:07 +05:30
parent 81d9982ea5
commit d2ed149f80

View File

@@ -55,7 +55,7 @@ export const BrowserStepsProvider: React.FC<{ children: React.ReactNode }> = ({
]);
};
const addListStep = (listSelector: string, newFields: { [key: string]: TextStep }, listId: number, pagination?: { type: string; selector: string}) => {
const addListStep = (listSelector: string, newFields: { [key: string]: TextStep }, listId: number, pagination?: { type: string; selector: string }) => {
setBrowserSteps(prevSteps => {
const existingListStepIndex = prevSteps.findIndex(
step => step.type === 'list' && step.id === listId
@@ -80,7 +80,6 @@ export const BrowserStepsProvider: React.FC<{ children: React.ReactNode }> = ({
});
};
const addScreenshotStep = (fullPage: boolean) => {
setBrowserSteps(prevSteps => [
...prevSteps,