Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/workflows/cd-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,6 @@ jobs:
cache: yarn
# Necessary to set up registry for auth
registry-url: "https://registry.npmjs.org"
# Ensure npm 11.5.1 or later is installed to support OIDC
- name: Update npm
run: npm install -g npm@latest
- name: Install dependencies
run: yarn install --immutable
# If there is no new version for dependency package (e.g. core)
Expand Down
3 changes: 1 addition & 2 deletions packages/apps/human-app/frontend/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,10 @@ VITE_H_CAPTCHA_EXCHANGE_URL=replace_me
VITE_H_CAPTCHA_LABELING_BASE_URL=replace_me

# Other
VITE_HUMAN_PROTOCOL_HELP_URL=https://docs.humanprotocol.org/
VITE_HUMAN_PROTOCOL_URL=https://humanprotocol.org/
VITE_STAKING_DASHBOARD_URL=https://staking.humanprotocol.org/
VITE_HUMAN_SUPPORT_EMAIL=support@local.app
VITE_NAVBAR__LINK__HOW_IT_WORK_URL=https://humanprotocol.org/
VITE_NAVBAR__LINK__HOW_IT_WORK_URL=https://docs.humanprotocol.org/
VITE_NAVBAR__LINK__PROTOCOL_URL=https://humanprotocol.org/
VITE_PRIVACY_POLICY_URL=http://local.app/privacy-policy/
VITE_TERMS_OF_SERVICE_URL=http://local.app/terms-and-conditions/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export function SendResetLinkSuccessPage() {
<Trans
components={{
1: <Typography component="span" sx={{ fontWeight: 600 }} />,
2: <MailTo mail={env.VITE_HUMAN_PROTOCOL_HELP_URL} />,
2: <MailTo mail={env.VITE_HUMAN_SUPPORT_EMAIL} />,
}}
i18nKey="worker.sendResetLinkSuccess.paragraph4"
/>
Expand Down
1 change: 0 additions & 1 deletion packages/apps/human-app/frontend/src/shared/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ const envSchema = z.object({
VITE_NAVBAR__LINK__PROTOCOL_URL: z.string(),
VITE_NAVBAR__LINK__HOW_IT_WORK_URL: z.string(),
VITE_HUMAN_SUPPORT_EMAIL: z.string(),
VITE_HUMAN_PROTOCOL_HELP_URL: z.string(),
VITE_H_CAPTCHA_SITE_KEY: z.string(),
VITE_HMT_DAILY_SPENT_LIMIT: z
.string()
Expand Down
Loading