Skip to content

Commit 0dde7e9

Browse files
Turn on sidebar experiment for everyone (codesandbox#3605)
* fix github repo creation * prevent form submit + alignment * add bookmark for teams * added advertisement * turn on new design by default * sigh always true * supposed to be a string damn * dont show bookmark to logged in user * changed the wrong file 🤦 Co-authored-by: Christian Alfoni <[email protected]>
1 parent dd284d8 commit 0dde7e9

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

packages/common/src/utils/feature-flags.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@
66
it's a TS file, so you can add whatever logic you want as long as it's static
77
*/
88

9-
export const REDESIGNED_SIDEBAR =
10-
localStorage.getItem('REDESIGNED_SIDEBAR') || false;
119

10+
export const REDESIGNED_SIDEBAR = 'true';
1211
export const COMMENTS =
1312
localStorage.getItem('COMMENTS_CODESANDBOX') === 'true' || false;
1413
export const ACCESS_SHEET = localStorage.getItem('ACCESS_SHEET') || false;

packages/components/src/components/Icon/icons.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,4 +185,4 @@ export const notFound = props => (
185185
<path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" />
186186
<line x1="12" y1="17" x2="12.01" y2="17" />
187187
</svg>
188-
);
188+
);

0 commit comments

Comments
 (0)