Skip to content

Commit

Permalink
fix stories and line break
Browse files Browse the repository at this point in the history
  • Loading branch information
mattseddon committed Apr 26, 2023
1 parent 7323a7b commit 5506306
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 3 additions & 0 deletions webview/src/setup/components/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ export const App: React.FC = () => {
useVsCodeMessaging(
useCallback(
({ data }: { data: MessageToWebview<SetupData> }) => {
if (!data?.data) {
return
}
setCanGitInitialized(data.data.canGitInitialize)
setCliCompatible(data.data.cliCompatible)
setHasData(data.data.hasData)
Expand Down
3 changes: 1 addition & 2 deletions webview/src/setup/components/studio/Connect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@ export const Connect: React.FC = () => {
onClick={saveStudioToken}
/>
<p>
{"Don't Have an account?\n"}
<a href={STUDIO_URL}>Get Started</a>
Don&apos;t Have an account? <a href={STUDIO_URL}>Get Started</a>
</p>
</div>
</EmptyState>
Expand Down

0 comments on commit 5506306

Please sign in to comment.