Skip to content

Commit

Permalink
Remove "experimental" denotation in the playground
Browse files Browse the repository at this point in the history
  • Loading branch information
Erin van der Veen committed Jan 25, 2024
1 parent f0e2e38 commit 8f4d1b4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 0 additions & 2 deletions topiary-playground/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,6 @@ fn main() {

for (name, input) in input_map.into_iter().sorted() {
if let Some(query) = language_map.get(&name) {
// let supported = SupportedLanguage::is_supported(&name);

buffer.push_str(&format!(
r#" "{name}": {{
query: `{query}`,
Expand Down
3 changes: 1 addition & 2 deletions web-playground/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,7 @@ function App() {
let languageItems: ReactElement[] = [];

for (let l in languages) {
let displayName = languages[l].supported === "true" ? l : l + " (experimental)";
languageItems.push(<option key={l} value={l}>{displayName}</option>)
languageItems.push(<option key={l} value={l}>{l}</option>)
}

setLanguageOptions(languageItems);
Expand Down

0 comments on commit 8f4d1b4

Please sign in to comment.