chore: format all files in monorepo (#3054)
* chore: format all files in the project * fix: removing @types/react from dependencies * fix: adding prettier and eslint config * chore: format files * fix: upgrading turbo version * chore: ignoring warnings and adding todos * fix: updated the type of bubble menu item in the document editor * chore: format files --------- Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
This commit is contained in:
parent
e5ae139178
commit
5b0066140f
721 changed files with 3739 additions and 4660 deletions
|
|
@ -163,7 +163,7 @@ export const GithubImporterRoot: React.FC<Props> = () => {
|
|||
|
||||
return (
|
||||
<form onSubmit={handleSubmit(createGithubImporterService)}>
|
||||
<div className="space-y-2 mt-4">
|
||||
<div className="mt-4 space-y-2">
|
||||
<Link href={`/${workspaceSlug}/settings/imports`}>
|
||||
<span className="inline-flex cursor-pointer items-center gap-2 text-sm font-medium text-custom-text-200 hover:text-custom-text-100">
|
||||
<ArrowLeft className="h-3 w-3" />
|
||||
|
|
@ -191,7 +191,7 @@ export const GithubImporterRoot: React.FC<Props> = () => {
|
|||
}`}
|
||||
>
|
||||
<integration.icon
|
||||
className={`w-5 h-5 ${index <= activeIntegrationState() ? "text-white" : "text-custom-text-400"}`}
|
||||
className={`h-5 w-5 ${index <= activeIntegrationState() ? "text-white" : "text-custom-text-400"}`}
|
||||
/>
|
||||
</div>
|
||||
{index < integrationWorkflowData.length - 1 && (
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@ export const SingleUserSelect: React.FC<Props> = ({ collaborator, index, users,
|
|||
<div className="relative h-8 w-8 flex-shrink-0 rounded">
|
||||
<img
|
||||
src={collaborator.avatar_url}
|
||||
className="absolute top-0 left-0 h-full w-full object-cover rounded"
|
||||
className="absolute left-0 top-0 h-full w-full rounded object-cover"
|
||||
alt={`${collaborator.login} GitHub user`}
|
||||
/>
|
||||
</div>
|
||||
|
|
@ -99,7 +99,7 @@ export const SingleUserSelect: React.FC<Props> = ({ collaborator, index, users,
|
|||
setUsers(newUsers);
|
||||
}}
|
||||
placeholder="Enter email of the user"
|
||||
className="py-1 text-xs w-full"
|
||||
className="w-full py-1 text-xs"
|
||||
/>
|
||||
)}
|
||||
{users[index].import === "map" && members && (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue