We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66a967d commit 0370387Copy full SHA for 0370387
1 file changed
webui/src/pages/extension-detail/extension-detail-reviews.tsx
@@ -138,7 +138,8 @@ export const ExtensionDetailReviews: FunctionComponent<ExtensionDetailReviewsPro
138
sx={{ ml: 1 }}
139
onClick={() => {
140
setRemoveCommentFromUser(r.user);
141
- setRemoveDialogOpen(true)}}>
+ setRemoveDialogOpen(true);
142
+ }}>
143
Remove review
144
</Button>;
145
};
@@ -169,8 +170,8 @@ export const ExtensionDetailReviews: FunctionComponent<ExtensionDetailReviewsPro
169
170
171
</ButtonWithProgress>
172
</DialogActions>
- </Dialog>
173
- }
+ </Dialog>;
174
+ };
175
176
const renderReviewList = (list?: ExtensionReviewList): ReactNode => {
177
if (!list) {
0 commit comments