Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export function ThirstyfiInfoModal({
<Typography variant="h6" textAlign="center">
{t('thirstyfiModal.tutorialText1')}
<Link
href="https://thirsty.fi/blog/campaign-human-protocol"
href="https://thirsty.fi/blog"
target="_blank"
rel="noopener noreferrer"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ export class JobAssignmentController {
: JobStatus.COMPLETED,
created_at: new Date().toISOString(),
expires_at: process.env.THIRSTYFI_TASK_EXPIRATION_DATE,
url: 'https://thirsty.fi/blog/campaign-human-protocol',
url: 'https://thirsty.fi/blog',
} as any,
],
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
process.env.THIRSTYFI_ORACLE_ADDRESS
) {
let data: any;
if (new Date(process.env.THIRSTYFI_TASK_EXPIRATION_DATE!) >= new Date()) {

Check warning on line 60 in packages/apps/human-app/server/src/modules/jobs-discovery/jobs-discovery.controller.ts

View workflow job for this annotation

GitHub Actions / Lint

Forbidden non-null assertion
const response = await axios.get<any>(
`${process.env.THIRSTIFY_EXO}/participant`,
{
Expand Down Expand Up @@ -86,7 +86,7 @@
chain_id: ChainId.POLYGON,
escrow_address: 'thirstyfi-task',
job_type: 'thirstyfi',
job_description: 'Check job description at https://thirsty.fi/blog/campaign-human-protocol',
job_description: 'Check job description at https://thirsty.fi/blog',
reward_amount: '5 - 50',
reward_token: 'USDT',
status: JobStatus.ACTIVE,
Expand Down
Loading