Skip to content

Commit bd057b4

Browse files
Merge pull request #305 from IntersectMBO/fix/-Remove-CSS-Rounded-Edges-on-Creating-Governance-Action-Pages-on-background-(#3705)
chore: Update changelog for version 0.7.0-beta-33, remove debug logs,…
2 parents faff408 + 18a8af5 commit bd057b4

File tree

6 files changed

+12
-5
lines changed

6 files changed

+12
-5
lines changed

pdf-ui/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
As a minor extension, we also keep a semantic version for the `UNRELEASED`
99
changes.
10+
11+
## [v0.7.0-beta-33](https://www.npmjs.com/package/@intersect.mbo/pdf-ui/v/0.7.0-beta-33) 2025-06-02
12+
- Remove CSS Rounded Edges on Creating Governance Action Pages on background
13+
- Fix data-testIds
14+
15+
16+
1017
## [v0.7.0-beta-32](https://www.npmjs.com/package/@intersect.mbo/pdf-ui/v/0.7.0-beta-32) 2025-05-29
1118
- fix: Update data-testid attributes for improved accessibility in form…
1219
- Hardware Wallet warning #2575 wording updated

pdf-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@intersect.mbo/pdf-ui",
3-
"version": "0.7.0-beta-32",
3+
"version": "0.7.0-beta-33",
44
"description": "Proposal discussion ui",
55
"main": "./src/index.js",
66
"exports": {

pdf-ui/src/components/BudgetDiscussionParts/StepperActionButtons.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ const StepperActionButtons = ({
2121
backText = 'Back',
2222
errors,
2323
}) => {
24-
console.log('🚀 ~ errors:', errors);
2524
// Calculate backStep if not provided
2625
const calculatedBackStep = backStep !== undefined ? backStep : nextStep - 2;
2726
const [continueDisabled, setContinueDisabled] = useState(false);

pdf-ui/src/components/CreationGoveranceAction/Step2.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,6 @@ const Step2 = ({
145145
(typeof err?.url === 'string' && err.url.trim() !== '') ||
146146
(typeof err?.text === 'string' && err.text.trim() !== '')
147147
);
148-
console.log('🚀 ~ useEffect ~ hasLinkError:', hasLinkError);
149148
if (hasLinkError) {
150149
setIsDraftDisabled(true);
151150
return;

pdf-ui/src/components/ProposalSubmissionDialog/index.jsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ const ProposalSubmissionDialog = ({
2424
open={openEditDialog}
2525
onClose={handleCloseSubmissionDialog}
2626
data-testid='proposal-submission-dialog'
27+
PaperProps={{
28+
sx: { borderRadius: 0 },
29+
}}
2730
>
2831
<Box
2932
sx={{

pdf-ui/src/lib/markdownRenderer.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,6 @@ const MarkdownTypography = ({ content, testId, onLinkClick }) => {
370370

371371
// Change special symbols
372372
text = symbolReplacements(text);
373-
374373
return text;
375374
};
376375

@@ -389,7 +388,7 @@ const MarkdownTypography = ({ content, testId, onLinkClick }) => {
389388
}
390389
});
391390
});
392-
}, []);
391+
}, [processedContent]);
393392

394393
return (
395394
<div data-testid={testId}>

0 commit comments

Comments
 (0)