Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pmf repharsing #129

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/react/atlascode/common/pmf/PMFDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export const PMFDialog: React.FunctionComponent<PMFDialogProps> = ({ open, onCan
return (
<Dialog fullWidth maxWidth="md" open={open} onClose={onCancel}>
<DialogTitle>
<Typography variant="h4">How Are We Doing?</Typography>
<Typography variant="h4">Tell us about your experience</Typography>
</DialogTitle>
<DialogContent>
<Grid container direction="column" spacing={2}>
Expand All @@ -59,7 +59,8 @@ export const PMFDialog: React.FunctionComponent<PMFDialogProps> = ({ open, onCan
as={
<FormControl component="fieldset" onBlur={handleLevelBlur}>
<FormLabel component="legend" required error={errors.level !== undefined}>
How would you feel if you could no longer use this extension?
How disappointed would you feel if you could no longer use Atlassian for VS Code
extension?
</FormLabel>
<RadioGroup aria-label="level" name="level">
<FormControlLabel
Expand Down