8000 fix: format · coder/coder@63e4323 · GitHub
[go: up one dir, main page]

Skip to content

Commit 63e4323

Browse files
committed
fix: format
1 parent b685220 commit 63e4323

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

site/src/pages/CreateWorkspacePage/CreateWorkspaceExperimentRouter.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ const CreateWorkspaceExperimentRouter: FC = () => {
4040
if (storedOptOutString !== null) {
4141
optOutResult = storedOptOutString === "true";
4242
} else {
43-
optOutResult = Boolean(templateQuery.data.use_classic_parameter_flow);
43+
optOutResult = Boolean(
44+
templateQuery.data.use_classic_parameter_flow,
45+
);
4446
localStorage.setItem(localStorageKey, optOutResult.toString());
4547
}
4648

0 commit comments

Comments
 (0)
0