Skip to content

Commit

Permalink
Merge branch 'main' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Perlkonig committed Dec 27, 2024
2 parents c1b2509 + 0b61865 commit a41d0f3
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion src/components/Player/Response.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function Response({ order }) {
{
y: parsed.filter(n => n < 500),
type: "box",
boxpoints: "suspectedoutliers",
boxpoints: false,
orientation: "v",
name: "Time to move (hours)",
jitter: 0.3,
Expand Down
2 changes: 1 addition & 1 deletion src/components/Stats/SiteStats.js
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ function SiteStats({ nav }) {
{
y: summary.hoursPer.filter((x) => x <= 100),
type: "box",
boxpoints: "False",
boxpoints: false,
orientation: "v",
name: "Hours per move",
jitter: 0.3,
Expand Down
38 changes: 19 additions & 19 deletions src/config/local.js
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
const API_ENDPOINT =
"https://alyhqu85me.execute-api.us-east-1.amazonaws.com/dev/";

module.exports = {
COGNITO_USER_POOL_ID: "us-east-1_2zrzbEjoU",
COGNITO_DOMAIN: "auth.dev.abstractplay.com", // "abstractplaydev.auth.us-east-1.amazoncognito.com",
COGNITO_APPID: "14mpql1tmvntup4p2anm4jt782",
COGNITO_COOKIE_DOMAIN: "localhost",
COGNITO_REDIRECT_LOGIN: "http://localhost:3000",
COGNITO_REDIRECT_LOGOUT: "http://localhost:3000",
API_ENDPOINT_OPEN: API_ENDPOINT + "query",
API_ENDPOINT_AUTH: API_ENDPOINT + "authQuery",
PUSH_API_URL: API_ENDPOINT + "authQuery",
};

// const API_ENDPOINT =
// "https://7n1lziet28.execute-api.us-east-1.amazonaws.com/prod/";
// "https://alyhqu85me.execute-api.us-east-1.amazonaws.com/dev/";

// module.exports = {
// COGNITO_USER_POOL_ID: "us-east-1_YCjgSZHJm",
// COGNITO_DOMAIN: "auth.abstractplay.com", // "abstractplaylogin.auth.us-east-1.amazoncognito.com",
// COGNITO_APPID: "2isan3ctk1aabt2v6r6aptlpg",
// COGNITO_USER_POOL_ID: "us-east-1_2zrzbEjoU",
// COGNITO_DOMAIN: "auth.dev.abstractplay.com", // "abstractplaydev.auth.us-east-1.amazoncognito.com",
// COGNITO_APPID: "14mpql1tmvntup4p2anm4jt782",
// COGNITO_COOKIE_DOMAIN: "localhost",
// COGNITO_REDIRECT_LOGIN: "http://localhost:3000",
// COGNITO_REDIRECT_LOGOUT: "http://localhost:3000",
// API_ENDPOINT_OPEN: API_ENDPOINT + "query",
// API_ENDPOINT_AUTH: API_ENDPOINT + "authQuery",
// PUSH_API_URL: API_ENDPOINT + "authQuery",
// };

const API_ENDPOINT =
"https://7n1lziet28.execute-api.us-east-1.amazonaws.com/prod/";

module.exports = {
COGNITO_USER_POOL_ID: "us-east-1_YCjgSZHJm",
COGNITO_DOMAIN: "auth.abstractplay.com", // "abstractplaylogin.auth.us-east-1.amazoncognito.com",
COGNITO_APPID: "2isan3ctk1aabt2v6r6aptlpg",
COGNITO_COOKIE_DOMAIN: "localhost",
COGNITO_REDIRECT_LOGIN: "http://localhost:3000",
COGNITO_REDIRECT_LOGOUT: "http://localhost:3000",
API_ENDPOINT_OPEN: API_ENDPOINT + "query",
API_ENDPOINT_AUTH: API_ENDPOINT + "authQuery",
PUSH_API_URL: API_ENDPOINT + "authQuery",
};

0 comments on commit a41d0f3

Please sign in to comment.