Skip to content

Commit

Permalink
fix: don't disable timestamp from previous request
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Feb 8, 2024
1 parent 3a03b93 commit b8ecfe9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
No results could be fetched. Is it a valid domain?
</div>
<TheShareLink v-if="crux || lighthouse" :domain="domain" :type="crux ? 'crux' : 'pagespeed-insights'"
:timestamp="crux?.timestamp || lighthouse!.timestamp" />
:timestamp="cruxStatus === 'pending' ? undefined : crux?.timestamp || lighthouse!.timestamp" />
<details class="max-w-[500px] text-gray-400">
<summary class="cursor-pointer">
About these results
Expand Down

0 comments on commit b8ecfe9

Please sign in to comment.