We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1419d1a commit 081e715Copy full SHA for 081e715
packages/app/src/app/pages/common/Modals/PRModal/index.tsx
@@ -7,10 +7,7 @@ const PRModal: React.FC = () => {
7
8
const {
9
state: {
10
- git: {
11
- isCreatingPr,
12
- pr: { prURL },
13
- },
+ git: { isCreatingPr, pr },
14
},
15
} = useOvermind();
16
@@ -20,7 +17,7 @@ const PRModal: React.FC = () => {
20
17
Done! We{"'"}ll now open the new sandbox of this PR and GitHub in 3
21
18
seconds...
22
19
<div style={{ fontSize: '.875rem', marginTop: '1rem' }}>
23
- <a href={prURL} target="_blank" rel="noreferrer noopener">
+ <a href={pr.prURL} target="_blank" rel="noreferrer noopener">
24
Click here if nothing happens.
25
</a>
26
</div>
0 commit comments