chore: ai for issue description (#575)

* feat: block sync

* chore: ai assistant for issue description
This commit is contained in:
Aaryan Khandelwal 2023-03-29 16:30:40 +05:30 committed by GitHub
parent 2f69761130
commit 96910e1897
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 148 additions and 114 deletions

View file

@ -50,8 +50,6 @@ const ProjectViews: NextPage<UserAuth> = (props) => {
: null
);
console.log(views)
return (
<AppLayout
meta={{
@ -88,11 +86,7 @@ const ProjectViews: NextPage<UserAuth> = (props) => {
<h3 className="text-3xl font-semibold text-black">Views</h3>
<div className="rounded-[10px] border">
{views.map((view) => (
<SingleViewItem
key={view.id}
view={view}
setSelectedView={setSelectedView}
/>
<SingleViewItem key={view.id} view={view} setSelectedView={setSelectedView} />
))}
</div>
</div>