Skip to content

Commit

Permalink
Update class name from h4 to p in AtmosWorkflow component
Browse files Browse the repository at this point in the history
  • Loading branch information
milldr committed Sep 19, 2024
1 parent a990b36 commit f06f0dd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/AtmosWorkflow/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,19 @@ export default function AtmosWorkflow({ workflow, stack = '', fileName }: AtmosW
<code>{fullFilePath}</code> file:
</Note>
{workflowData?.description && (
<h4 className=".workflow-title">
<p className=".workflow-title">
{workflowData.description}
</h4>
</p>
)}
<Steps>
<ul>
{workflowData?.steps.length ? (
workflowData.steps.map((step, index) => (
<li key={index}>
{step.type === 'title' ? (
<p className=".workflow-title">
<h4 className=".workflow-title">
{step.content}
</p>
</h4>
) : (
<CodeBlock language="bash">{step.content}</CodeBlock>
)}
Expand Down

0 comments on commit f06f0dd

Please sign in to comment.