Skip to content

Commit 9880818

Browse files
committed
import
1 parent 78fd19c commit 9880818

File tree

639 files changed

+8203
-812
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

639 files changed

+8203
-812
lines changed

frontend/README.md

Lines changed: 49 additions & 7 deletions

frontend/apps/design-system-storybook/applitools.config.cjs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ module.exports = {
1212
appName: 'Component Library',
1313
batchName: 'Frontend Eyes Tests',
1414
dontCloseBatches: true,
15-
parentBranchName: 'staging',
1615
browser: [
1716
{width: 1200, height: 800, name: 'chrome'},
1817
{width: 1200, height: 800, name: 'firefox'},

frontend/apps/design-system-storybook/package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"license": "SEE LICENSE IN LICENSE",
1818
"type": "module",
1919
"scripts": {
20-
"build-storybook": "storybook build -o dist/component-library-storybook",
20+
"build": "storybook build -o dist/component-library-storybook",
2121
"clean": "rimraf dist",
2222
"dev": "yarn run storybook",
2323
"eyes-storybook": "tsx ./scripts/eyes-storybook.ts",
@@ -36,31 +36,31 @@
3636
"extends": "@code-dot-org/lint-config/stylelint/index.mjs"
3737
},
3838
"devDependencies": {
39-
"@applitools/eyes-storybook": "^3.52.1",
39+
"@applitools/eyes-storybook": "^3.53.13",
4040
"@code-dot-org/component-library-styles": "workspace:*",
4141
"@code-dot-org/fonts": "workspace:*",
4242
"@code-dot-org/lint-config": "workspace:*",
4343
"@dotenv-run/cli": "^1.3.6",
4444
"@eslint/js": "^9.16.0",
45-
"@storybook/addon-a11y": "^8.4.4",
46-
"@storybook/addon-essentials": "^8.4.4",
47-
"@storybook/addon-interactions": "^8.4.4",
48-
"@storybook/addon-storysource": "^8.4.4",
45+
"@storybook/addon-a11y": "^8.6.9",
46+
"@storybook/addon-essentials": "^8.6.9",
47+
"@storybook/addon-interactions": "^8.6.9",
48+
"@storybook/addon-storysource": "^8.6.9",
4949
"@storybook/addon-styling-webpack": "^1.0.1",
50-
"@storybook/addon-webpack5-compiler-swc": "^1.0.6",
51-
"@storybook/blocks": "^8.4.4",
52-
"@storybook/react": "^8.4.4",
53-
"@storybook/react-webpack5": "^8.4.4",
54-
"@storybook/test": "^8.4.4",
55-
"@storybook/test-runner": "^0.19.1",
50+
"@storybook/addon-webpack5-compiler-swc": "^3.0.0",
51+
"@storybook/blocks": "^8.6.9",
52+
"@storybook/react": "^8.6.9",
53+
"@storybook/react-webpack5": "^8.6.9",
54+
"@storybook/test": "^8.6.9",
55+
"@storybook/test-runner": "^0.22.0",
5656
"axe-playwright": "^2.0.3",
5757
"concurrently": "^9.1.0",
5858
"eslint": "^9.16.0",
5959
"globals": "^15.13.0",
6060
"http-server": "^14.1.1",
6161
"prettier": "3.4.2",
6262
"sass-loader": "^16.0.3",
63-
"storybook": "^8.4.4",
63+
"storybook": "^8.6.9",
6464
"storybook-addon-rtl": "^1.0.1",
6565
"stylelint": "^16.14.1",
6666
"tsx": "^4.19.2",

frontend/apps/design-system-storybook/scripts/test-storybook.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
set -x
66

77
# Build a production version of Storybook
8-
yarn build-storybook --quiet
8+
yarn build --quiet
99

1010
# Wait for Storybook to be available and then execute the tests
1111
npx concurrently -k -s first -n "SB,TEST" -c "magenta,blue" \

frontend/apps/marketing/.lighthouserc.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,16 @@ const assertions = {
22
'bf-cache': 'off',
33
'color-contrast': 'off',
44
'inspector-issues': 'off',
5-
'offscreen-images': ['error', {minScore: 0.5, maxLength: 1}],
5+
'offscreen-images': ['error', {minScore: 0.5, maxLength: 3}], // re-enable after CMS-482
66
'total-byte-weight': ['error', {minScore: 0.5}],
77
'unused-css-rules': ['error', {maxLength: 5}],
88
'unused-javascript': ['error', {maxLength: 10}],
99
'uses-text-compression': ['error', {maxLength: 5}],
1010
'third-party-cookies': 'off',
1111
'uses-rel-preconnect': 'off',
12+
'unsized-images': ['error', {minScore: 0.5}], // re-enable after CMS-482
13+
'uses-responsive-images': ['error', {maxLength: 1}], // re-enable after CMS-482,
14+
'link-text': 'off', // re-enable after CMS-497
1215
};
1316

1417
if (process.env.STAGE !== 'production') {
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
public/**
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
public/**

frontend/apps/marketing/eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import cdoReactConfig from '@code-dot-org/lint-config/eslint/react.mjs';
66
/** @type {import('eslint').Linter.Config[]} */
77
export default [
88
{
9-
ignores: ['.next/*', 'playwright-report', 'test-results'],
9+
ignores: ['.next/*', 'playwright-report', 'test-results', 'public/**'],
1010
},
1111
{
1212
// TODO: Remove this once the following Github Issue is resolved:

frontend/apps/marketing/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
},
1717
"license": "SEE LICENSE IN LICENSE",
1818
"scripts": {
19-
"build": "next build",
19+
"build": "next build && yarn copy:static-assets",
20+
"copy:static-assets": "cp -r public .next/standalone/apps/marketing",
2021
"dev": "next dev --turbopack -p 3001",
2122
"lint": "eslint .",
2223
"lint:fix": "eslint --fix .",
@@ -42,7 +43,7 @@
4243
"@statsig/statsig-node-core": "^0.0.8",
4344
"@statsig/web-analytics": "^3.14.1",
4445
"contentful": "^11.2.5",
45-
"next": "^15.1.2",
46+
"next": "^15.2.3",
4647
"react": "^18.3.1",
4748
"react-dom": "^18.3.1"
4849
},

frontend/apps/marketing/playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ export default defineConfig<EyesFixture>({
2929
matchLevel: 'Strict',
3030
// Runner type: 'ufg' for Ultrafast Grid, 'classic' for Classic runner
3131
type: 'classic',
32-
parentBranchName: 'staging',
3332
batch: {
3433
name: 'Frontend Eyes Tests',
3534
id: process.env.APPLITOOLS_BATCH_ID,
3635
notifyOnCompletion: false,
3736
},
3837
sendDom: true,
3938
failTestsOnDiff: 'afterEach',
39+
branchName: 'staging',
4040
// Additional configuration options...
4141
},
4242
},
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"CookieSPAEnabled":false,"CookieSameSiteNoneEnabled":false,"CookieV2CSPEnabled":false,"MultiVariantTestingEnabled":false,"UseV2":true,"MobileSDK":false,"SkipGeolocation":false,"ScriptType":"LOCAL","Version":"202306.2.0","OptanonDataJSON":"27cca70a-7db3-4852-9ef0-a6660fd0977d","GeolocationUrl":"https://geolocation.onetrust.com/cookieconsentpub/v1/geo/location","BulkDomainCheckUrl":"https://cookies-data.onetrust.io/bannersdk/v1/domaingroupcheck","RuleSet":[{"Id":"af8e25d7-0a22-4aa0-9f25-e5cd8db4333d","Name":"Global Rule","Countries":["pr","ps","pw","py","qa","ad","ae","af","ag","ai","al","am","ao","aq","ar","as","au","aw","az","ba","bb","rs","bd","ru","bf","rw","bh","bi","bj","bl","bm","bn","bo","sa","sb","bq","sc","br","bs","sd","bt","sg","bv","sh","bw","sj","by","bz","sl","sn","so","ca","sr","ss","cc","st","cd","sv","cf","cg","sx","sy","ci","sz","ck","cl","cm","cn","co","cr","tc","td","cu","tf","tg","cv","cw","th","cx","tj","tk","tl","tm","tn","to","tr","tt","tv","tw","dj","tz","dm","do","ua","ug","dz","um","us","ec","eg","eh","uy","uz","va","er","vc","et","ve","vg","vi","vn","vu","fj","fk","fm","fo","wf","ga","ws","gd","ge","gg","gh","gi","gl","gm","gn","gq","gs","gt","gu","gw","gy","xk","hk","hm","hn","ht","ye","id","il","im","in","io","za","iq","ir","zm","je","zw","jm","jo","jp","ke","kg","kh","ki","km","kn","kp","kr","kw","ky","kz","la","lb","lc","lk","lr","ls","ly","ma","md","me","mg","mh","mk","ml","mm","mn","mo","mp","mr","ms","mu","mv","mw","mx","my","mz","na","nc","ne","nf","ng","ni","np","nr","nu","nz","om","pa","pe","pf","pg","ph","pk","pm","pn"],"States":{},"LanguageSwitcherPlaceholder":{"hi":"hi","ps":"ps","pt":"pt","hr":"hr","hu":"hu","yi":"yi","hy":"hy","yo":"yo","id":"id","af":"af","is":"is","it":"it","am":"am","zh":"zh","ar":"ar","ja":"ja","az":"az","zu":"zu","ro":"ro","ru":"ru","be":"be","bg":"bg","jv":"jv","bn":"bn","sd":"sd","bs":"bs","default":"en","si":"si","ka":"ka","sk":"sk","sl":"sl","sm":"sm","sn":"sn","so":"so","ca":"ca","sq":"sq","sr":"sr","kk":"kk","st":"st","su":"su","km":"km","sv":"sv","kn":"kn","sw":"sw","ko":"ko","kr":"kr","ku":"ku","co":"co","ta":"ta","ky":"ky","cs":"cs","te":"te","tg":"tg","th":"th","cy":"cy","lb":"lb","tl":"tl","da":"da","tr":"tr","tt":"tt","de":"de","lo":"lo","lt":"lt","lv":"lv","uk":"uk","me":"me","mg":"mg","mi":"mi","ur":"ur","mk":"mk","ml":"ml","mn":"mn","uz":"uz","mr":"mr","ms":"ms","mt":"mt","el":"el","eo":"eo","my":"my","es":"es","et":"et","eu":"eu","vi":"vi","ne":"ne","fa":"fa","nl":"nl","no":"no","fi":"fi","fr":"fr","ga":"ga","gd":"gd","gl":"gl","gu":"gu","xh":"xh","pa":"pa","ha":"ha","pl":"pl","he":"he"},"BannerPushesDown":false,"Default":true,"Global":true,"Type":"GDPR","UseGoogleVendors":false,"VariantEnabled":false,"TestEndTime":null,"Variants":[],"TemplateName":"Code.org Template","Conditions":[],"GCEnable":false,"IsGPPEnabled":false},{"Id":"a927cb3f-e217-4683-b0d8-c299188734b6","Name":"GDPR Rule","Countries":["no","de","be","fi","pt","bg","dk","lt","lu","hr","lv","fr","hu","se","mc","si","sk","mf","sm","gb","yt","ie","gf","ee","mq","ch","mt","gp","is","it","gr","es","re","at","cy","cz","ax","pl","li","ro","nl"],"States":{},"LanguageSwitcherPlaceholder":{"hi":"hi","ps":"ps","pt":"pt","hr":"hr","hu":"hu","yi":"yi","hy":"hy","yo":"yo","id":"id","af":"af","is":"is","it":"it","am":"am","zh":"zh","ar":"ar","ja":"ja","az":"az","zu":"zu","ro":"ro","ru":"ru","be":"be","bg":"bg","jv":"jv","bn":"bn","sd":"sd","bs":"bs","default":"en","si":"si","ka":"ka","sk":"sk","sl":"sl","sm":"sm","sn":"sn","so":"so","ca":"ca","sq":"sq","sr":"sr","kk":"kk","st":"st","su":"su","km":"km","sv":"sv","kn":"kn","sw":"sw","ko":"ko","kr":"kr","ku":"ku","co":"co","ta":"ta","ky":"ky","cs":"cs","te":"te","tg":"tg","th":"th","cy":"cy","lb":"lb","tl":"tl","da":"da","tr":"tr","tt":"tt","de":"de","lo":"lo","lt":"lt","lv":"lv","uk":"uk","me":"me","mg":"mg","mi":"mi","ur":"ur","mk":"mk","ml":"ml","mn":"mn","uz":"uz","mr":"mr","ms":"ms","mt":"mt","el":"el","eo":"eo","my":"my","es":"es","et":"et","eu":"eu","vi":"vi","ne":"ne","fa":"fa","nl":"nl","no":"no","fi":"fi","fr":"fr","ga":"ga","gd":"gd","gl":"gl","gu":"gu","xh":"xh","pa":"pa","ha":"ha","pl":"pl","he":"he"},"BannerPushesDown":false,"Default":false,"Global":false,"Type":"GDPR","UseGoogleVendors":false,"VariantEnabled":false,"TestEndTime":null,"Variants":[],"TemplateName":"Code.org Template","Conditions":[],"GCEnable":false,"IsGPPEnabled":false}],"IabData":{"cookieVersion":"1","createdTime":"2023-07-20T00:42:41.607409321","updatedTime":"2023-07-20T00:42:41.607418121","cmpId":"28","cmpVersion":"1","consentScreen":"1","consentLanguage":null,"vendorListVersion":0,"maxVendorId":0,"encodingType":"0","globalVendorListUrl":"https://cdn.cookielaw.org/vendorlist/iabData.json"},"IabV2Data":{"cookieVersion":"1","createdTime":"2023-07-20T00:42:41.788577669","updatedTime":"2023-07-20T00:42:41.788583769","cmpId":"28","cmpVersion":"1","consentScreen":"1","consentLanguage":null,"vendorListVersion":0,"maxVendorId":0,"encodingType":"0","globalVendorListUrl":"https://cdn.cookielaw.org/vendorlist/iab2Data.json"},"GoogleData":{"vendorListVersion":1,"googleVendorListUrl":"https://cdn.cookielaw.org/vendorlist/googleData.json"},"ScriptDynamicLoadEnabled":false,"TenantFeatures":{"CookieV2BannerFocus":true,"CookieV2GPC":true,"CookieV2AssignTemplateRule":true,"CookieV2GeolocationJsonApi":true,"CookieV2TCF21":true,"CookieV2RemoveSettingsIcon":true,"CookieV2BannerLogo":true,"CookieV2GeneralVendors":true,"CookieV2GPP":true},"IsSuppressBanner":false,"IsSuppressPC":false,"PublisherCC":"US","Domain":"code.org","TenantGuid":"a810c6a9-5986-41f3-b636-8944508580bc","EnvId":"app-prod","RemoteActionsEnabled":false,"GeoRuleGroupName":"Geolocation Group by Athena","GATrackToggle":true,"GATrackAssignedCategory":"AS","WebFormIntegrationEnabled":false,"WebFormSrcUrl":"","WebFormWorkerUrl":"","GppData":{"cmpId":"28"}}

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/OtAutoBlock.js

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/af.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/am.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/ar.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/az.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/be.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/bg.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/bn.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/bs.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/ca.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/co.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/cs.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/cy.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/da.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/de.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/el.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/en.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/eo.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/es.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/et.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/eu.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/fa.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/fi.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/fr.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/ga.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/gd.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/gl.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/gu.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/ha.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/he.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/hi.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/hr.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/hu.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/hy.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/id.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/is.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/it.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/ja.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/jv.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/ka.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/kk.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/km.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/kn.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/ko.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/kr.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/ku.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/ky.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/lb.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

frontend/apps/marketing/public/onetrust/code.org/consent/27cca70a-7db3-4852-9ef0-a6660fd0977d/a927cb3f-e217-4683-b0d8-c299188734b6/lo.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)