Skip to content

Commit

Permalink
fix: remove incorrect 'last updated on' text (#1717)
Browse files Browse the repository at this point in the history
  • Loading branch information
e-schneid committed Aug 17, 2022
1 parent 0da2b57 commit 3e29e92
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
2 changes: 0 additions & 2 deletions packages/website/modules/docs-theme/feedback/feedback.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import { trackEvent, events } from '../../../lib/countly';
function Feedback({ strings: { title, yes, no, thanks, helpUsImprove } }) {
const router = useRouter();
const [voteSubmitted, setVoteSubmitted] = useState(false);
const lastUpdatedAt = process.env.NEXT_PUBLIC_DEPLOYDATE;
const ISSUE_URL = 'https://github.com/web3-storage/web3.storage/issues/new/choose';
const SUGGEST_CONTENT_URL = 'https://github.com/web3-storage/web3.storage/issues';
const editUrl = `https://github.com/web3-storage/web3.storage/tree/main/packages/website/pages${router.pathname}.md`;
Expand Down Expand Up @@ -53,7 +52,6 @@ function Feedback({ strings: { title, yes, no, thanks, helpUsImprove } }) {
Suggest new content
</a>
</div>
{lastUpdatedAt && <div className="last-updated">Last updated on {lastUpdatedAt}</div>}
</div>
</div>
);
Expand Down
5 changes: 0 additions & 5 deletions packages/website/modules/docs-theme/feedback/feedback.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,4 @@
margin-bottom: toRem(5);
}
}
.last-updated {
margin-top: 0.25rem;
font-style: italic;
font-size: smaller;
}
}

0 comments on commit 3e29e92

Please sign in to comment.