Skip to content

Commit 990d44c

Browse files
committed
Fix lint
1 parent 0e4adb2 commit 990d44c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

plugins/woocommerce-admin/client/tasks/fills/experimental-products/use-product-layout-experiment.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ type Layout = 'control' | 'card' | 'stacked';
99
export const getProductLayoutExperiment = async (): Promise< Layout > => {
1010
const [ cardAssignment, stackedAssignment ] = await Promise.all( [
1111
loadExperimentAssignment( `woocommerce_products_task_layout_card_v2` ),
12-
loadExperimentAssignment( `woocommerce_products_task_layout_stacked_v2` ),
12+
loadExperimentAssignment(
13+
`woocommerce_products_task_layout_stacked_v2`
14+
),
1315
] );
1416
// This logic may look flawed as in both looks like they can be assigned treatment at the same time,
1517
// but in backend we segment the experiments by store country, so it will never be.

0 commit comments

Comments
 (0)