Skip to content

Commit e9fe19b

Browse files
committed
fix (pricing): resolved pro issue
1 parent d25a635 commit e9fe19b

File tree

3 files changed

+90
-4
lines changed

3 files changed

+90
-4
lines changed

src/client/package-lock.json

Lines changed: 86 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/client/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,16 @@
3636
"date-fns": "^3.6.0",
3737
"dotenv": "^16.4.7",
3838
"framer-motion": "^12.4.3",
39+
"jsonwebtoken": "^9.0.2",
3940
"jwt-decode": "^4.0.0",
4041
"lenis": "^1.3.4",
4142
"lucide-react": "^0.475.0",
43+
"mongodb": "^6.8.0",
4244
"neo4j-driver": "^5.28.1",
4345
"next": "^15.1.7",
44-
"mongodb": "^6.8.0",
4546
"node-fetch": "^3.3.2",
4647
"posthog-js": "^1.257.0",
4748
"posthog-node": "^5.5.0",
48-
"web-push": "^3.6.7",
4949
"react": "^19.0.0",
5050
"react-dnd": "^16.0.1",
5151
"react-dnd-html5-backend": "^16.0.1",
@@ -64,6 +64,7 @@
6464
"typewriter-effect": "^2.22.0",
6565
"uuid": "^9.0.0",
6666
"vis-network": "^9.1.9",
67+
"web-push": "^3.6.7",
6768
"webrtc-adapter": "^9.0.1"
6869
},
6970
"devDependencies": {

src/server/main/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
AUTH0_AUDIENCE = os.getenv("AUTH0_AUDIENCE")
2828
ALGORITHMS = ["RS256"]
2929
AUTH0_SCOPE = os.getenv("AUTH0_SCOPE")
30-
AUTH0_NAMESPACE = os.getenv("AUTH0_NAMESPACE", "https://existence-sentient.vercel.app")
30+
AUTH0_NAMESPACE = os.getenv("AUTH0_NAMESPACE")
3131
SELF_HOST_AUTH_SECRET = os.getenv("SELF_HOST_AUTH_SECRET")
3232
AUTH0_MANAGEMENT_CLIENT_ID = os.getenv("AUTH0_MANAGEMENT_CLIENT_ID")
3333
AUTH0_MANAGEMENT_CLIENT_SECRET = os.getenv("AUTH0_MANAGEMENT_CLIENT_SECRET")

0 commit comments

Comments
 (0)