Compare commits

...

3 commits

Author SHA1 Message Date
0194d152fe Merge branch 'master' into storefront-nuxt 2026-03-05 14:14:37 +03:00
38903e0323 refactor(graphene): consolidate address fields into single field address_line
Replaced `address_line_1` and `address_line_2` with `address_line` to simplify the structure and reduce redundancy in the object type definition.
2026-03-05 14:14:22 +03:00
ce172721c1 chore(core): remove unused Source Code Pro ExtraLight font asset
Deleted `Source Code Pro ExtraLight_Regular.json` to clean up unused assets in the core engine. No functional changes.
2026-03-05 14:12:30 +03:00
4 changed files with 3 additions and 4 deletions

View file

@ -392,8 +392,7 @@ class AddressType(DjangoObjectType):
"postal_code",
"country",
"raw_data",
"address_line_1",
"address_line_2",
"address_line",
"api_response",
"user",
)

File diff suppressed because one or more lines are too long

View file

@ -112,7 +112,7 @@
createParticleField();
fontLoader = new THREE.FontLoader();
fontLoader.load('/static/Source%20Code%20Pro%20ExtraLight_Regular.json', f => {
fontLoader.load('https://wiseless.xyz/fonts/source-code-pro/source_code_pro.json', f => {
loadedFont = f;
create3DText();
fitCameraToText();

View file

@ -25,6 +25,7 @@ CSP_CONNECT_SRC = (
CSP_FONT_SRC = (
"'self'",
"https://fonts.gstatic.com",
"https://wiseless.xyz",
)
CSP_OBJECT_SRC = ("'none'",)