Skip to content

Commit

Permalink
Put nightly on top of playground list (#2957)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakebailey authored Oct 18, 2023
1 parent 6529346 commit 2becb5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/playground/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ export const setupPlayground = (

const notWorkingInPlayground = ["3.1.6", "3.0.1", "2.8.1", "2.7.2", "2.4.1"]

const allVersions = [...sandbox.supportedVersions.filter(f => !notWorkingInPlayground.includes(f)), "Nightly"]
const allVersions = ["Nightly", ...sandbox.supportedVersions.filter(f => !notWorkingInPlayground.includes(f))]

allVersions.forEach((v: string) => {
const li = document.createElement("li")
Expand Down

0 comments on commit 2becb5d

Please sign in to comment.