diff --git a/app/components/Output/Output.tsx b/app/components/Output/Output.tsx
index de743bd..682c5e9 100644
--- a/app/components/Output/Output.tsx
+++ b/app/components/Output/Output.tsx
@@ -67,7 +67,7 @@ const SchemaError = ({ schemaPath }: { schemaPath: string }) => {
Details: {errorDetails}
-
Possible Fixes:
+
Possible Fixes:
{possibleFixes.map((fix, index) => (
{fix}
diff --git a/app/styles/globals.css b/app/styles/globals.css
index 45a27d6..aa2abaf 100644
--- a/app/styles/globals.css
+++ b/app/styles/globals.css
@@ -74,4 +74,4 @@ html {
main {
height: 100%;
-}
+}
\ No newline at end of file
diff --git a/app/styles/theme.ts b/app/styles/theme.ts
index 50c053f..a3e5f51 100644
--- a/app/styles/theme.ts
+++ b/app/styles/theme.ts
@@ -17,7 +17,6 @@ const Button = {
},
success: {
color: "hsl(var(--success))",
-
borderColor: "hsl(var(--success))",
borderWidth: "1px",
_disabled: {
@@ -26,6 +25,9 @@ const Button = {
_hover: {
bg: "hsl(var(--success))",
color: "black",
+ "& svg path": {
+ fill: "black",
+ },
_disabled: {
color: "hsl(var(--success) / 0.4)",
},
diff --git a/content/02-Primitive-Types/09-Combining-Types/instructions.mdx b/content/02-Primitive-Types/09-Combining-Types/instructions.mdx
index 4a4cbf0..9e2d24b 100644
--- a/content/02-Primitive-Types/09-Combining-Types/instructions.mdx
+++ b/content/02-Primitive-Types/09-Combining-Types/instructions.mdx
@@ -20,7 +20,7 @@ Let's add a new property `hasAgreedToTerms` to the JSON object. This property sh
### Boolean
-A `boolean` type can have two values: `true` or `false`. you can define a boolean type as follows:
+A `boolean` type can have two values: `true` or `false`. You can define a boolean type as follows:
```json
{