fix: casing throughout the platform (#5293)

This commit is contained in:
Aaryan Khandelwal 2024-08-04 10:09:29 +05:30 committed by GitHub
parent 3a5c77e8a4
commit 8f8a97589d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
37 changed files with 50 additions and 146 deletions

View file

@ -157,11 +157,11 @@ export const LinkModal: FC<Props> = (props) => {
<Button variant="primary" size="sm" type="submit" loading={isSubmitting}>
{status
? isSubmitting
? "Updating Link..."
: "Update Link"
? "Updating link..."
: "Update link"
: isSubmitting
? "Adding Link..."
: "Add Link"}
? "Adding link..."
: "Add link"}
</Button>
</div>
</form>