chore: user auth layer (#749)

* chore: use estimate points hook created

* chore: user auth layer

* fix: build error
This commit is contained in:
Aaryan Khandelwal 2023-04-08 18:05:54 +05:30 committed by GitHub
parent 3fe32606a9
commit 1026ae3eb1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
20 changed files with 603 additions and 487 deletions

View file

@ -15,6 +15,7 @@ const initialValues: Properties = {
priority: false,
state: true,
sub_issue_count: false,
estimate: false,
};
const useIssuesProperties = (workspaceSlug?: string, projectId?: string) => {
@ -90,6 +91,7 @@ const useIssuesProperties = (workspaceSlug?: string, projectId?: string) => {
priority: properties.priority,
state: properties.state,
sub_issue_count: properties.sub_issue_count,
estimate: properties.estimate,
};
return [newProperties, updateIssueProperties] as const;