Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/Users/Users.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@
margin-bottom: 20px;
gap: 8px;
> * {
width: 125px;
width: max-content;
}
}

Expand Down
3 changes: 1 addition & 2 deletions src/components/Users/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import ConfirmationModal from '../Modal/ConfirmationModal'
import UserAddModalContent from './user-add.modal'
import InviteUserModalContent from './invite-user.modal' // Import the new component
import Loader from '../Loader'
import { OutlineButton } from '../Buttons'

const theme = {
container: styles.modalContainer
Expand Down Expand Up @@ -230,7 +229,7 @@ class Users extends Component {
)
}
{projectOption && (
<OutlineButton
<PrimaryButton

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider verifying that the PrimaryButton component supports all the same props as OutlineButton, such as text, type, and link, to ensure functionality remains unchanged.

text={'Go To Project'}
type={'info'}
link={`/projects/${projectOption.value}/challenges`} />
Expand Down