Skip to content

Commit 6424395

Browse files
authored
Merge pull request #37 from github/ui/report-issue-link
ui: route support requests to issues
2 parents 2f87c64 + b0cac2a commit 6424395

3 files changed

Lines changed: 36 additions & 4 deletions

File tree

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
name: Bug report
3+
about: Report an issue with the Copilot Billing Preview tool
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
---
8+
9+
> [!WARNING]
10+
> **This is a public repository.** Do not submit or upload your billing information, CSV files, or any other sensitive data. Everyone will be able to see it.
11+
12+
## Description
13+
14+
A clear and concise description of what the issue is.
15+
16+
## Steps to reproduce
17+
18+
1. Go to '...'
19+
2. Upload '...'
20+
3. See error
21+
22+
## Expected behavior
23+
24+
A clear and concise description of what you expected to happen.
25+
26+
## Screenshots
27+
28+
If you're planning to upload screenshots, make sure they do not contain sensitive billing information.
29+
30+
## Additional context
31+
32+
Add any other context about the problem here.

src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -545,7 +545,7 @@ function App() {
545545
<footer className="text-center text-fg-muted text-xs leading-[1.6] pt-6 px-4 pb-10 max-w-[960px] mx-auto w-full [&_a]:text-fg-muted [&_a]:no-underline [&_a:hover]:underline">
546546
This is a preview based on your uploaded usage data. Actual bills may differ.<br />
547547
Your data never leaves your browser.{' '}
548-
Questions? <a href="https://support.github.com" target="_blank" rel="noopener noreferrer">Contact GitHub Support</a>.
548+
Something is not right? <a href="https://github.com/github/copilot-billing-preview/issues" target="_blank" rel="noopener noreferrer">Submit an issue</a>.
549549
</footer>
550550
)}
551551
</div>

src/components/UploadPage.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,9 +138,9 @@ export function UploadPage({
138138
<footer className="text-center text-fg-muted text-[12px] leading-[1.6] pt-6 px-4 pb-10 max-w-[960px] mx-auto w-full">
139139
This is a preview based on your uploaded usage data. Actual bills may differ.
140140
<br />
141-
Your data never leaves your browser. Questions?{' '}
142-
<a className="no-underline hover:underline" href="https://support.github.com" target="_blank" rel="noreferrer">
143-
Contact GitHub Support
141+
Your data never leaves your browser. Something is not right?{' '}
142+
<a className="no-underline hover:underline" href="https://github.com/github/copilot-billing-preview/issues" target="_blank" rel="noopener noreferrer">
143+
Submit an issue
144144
</a>
145145
.
146146
</footer>

0 commit comments

Comments
 (0)