tetrons 2.2.7 → 2.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -3,7 +3,7 @@ import "./styles/tetrons.css";
3
3
  let API_VALID = false;
4
4
  let API_VERSION = "";
5
5
  export async function initializeTetrons(apiKey) {
6
- const res = await fetch("http://localhost:3000/api/validate", {
6
+ const res = await fetch("https://staging.tetrons.com/api/validate", {
7
7
  method: "POST",
8
8
  headers: {
9
9
  "Content-Type": "application/json",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tetrons",
3
- "version": "2.2.7",
3
+ "version": "2.2.8",
4
4
  "description": "A Next.js project written in TypeScript",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",