netlify / remix-template

Deploy your Remix site to Netlify
83 stars 27 forks source link

Remove beta wording for Netlify Edge Functions #117

Closed nickytonline closed 1 year ago

nickytonline commented 1 year ago

Relates to conversation in https://netlify.slack.com/archives/C0183KVDHFH/p1684936589886179

async function shouldUseEdge() {
  const { edge } = await inquirer.prompt([
    {
      name: "edge",
      type: "list",
      message: "Run your Remix site with:",
      choices: [
        {
-          name: "Netlify Functions - Choose this for stable support for production sites",
+         name: "Netlify Functions - ???", 
          value: false,
        },
        {
-          name: "Netlify Edge Functions (beta) - Try this for improved performance on less critical sites",
+          name: "Netlify Edge Functions - Try this for improved performance", 
          value: true,
        },
      ],
    },
  ]);

  return edge;
}

https://github.com/netlify/remix-template/blob/main/remix.init/index.js#LL151C1-L171C1

I'm not sure what the new wording should be exactly @rstavchansky