Skip to content

Commit

Permalink
SOROKA-93-2: visuals fixes (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
boatincow authored Jul 7, 2022
1 parent c6a9ca4 commit 71f2554
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ const App = observer(() => {
await propertiesStore.getProperties()
await propertiesStore.fetchTemplates()
setIsInitialLoading(false)
} else {
setIsInitialLoading(false)
}
}

Expand Down
4 changes: 3 additions & 1 deletion src/components/dashboard/ListOfCards.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ const ListOfCards = () => {
return (
<Container>
<Row xs={1} sm={3} md={4} lg={5} xl={6} className="g-2">
<AddNewCard />
<Col>
<AddNewCard />
</Col>
{cards.results.map(({ id, name, isFilled }) => (
<Col key={id}>
<ListCard id={id} name={name} isFilled={isFilled} />
Expand Down
2 changes: 1 addition & 1 deletion src/views/auth/InviteLink.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import {
import { useState } from 'react'

const InviteForm = ({ name, userRole, organizationName, onSubmit, isLoading }) => (
<Col lg={6}>
<Col lg={6} className="mt-3">
<FormattedMessage
id="inviteBrief"
values={{
Expand Down

0 comments on commit 71f2554

Please sign in to comment.