Skip to content

Commit

Permalink
Allow attempting claim if date is not set
Browse files Browse the repository at this point in the history
  • Loading branch information
aaroncox committed Dec 14, 2024
1 parent 24cc9c1 commit 82b9dbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/[network]/(account)/refund/manager.svelte.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export class RefundManager {
});

public refundable: boolean = $derived.by(() => {
return this.dateAvailable ? new Date() >= this.dateAvailable : false;
return this.dateAvailable ? new Date() >= this.dateAvailable : true;
});

constructor(network: NetworkState) {
Expand Down

0 comments on commit 82b9dbb

Please sign in to comment.