Skip to content
This repository has been archived by the owner on Feb 9, 2024. It is now read-only.

Commit

Permalink
b891349
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 10, 2023
1 parent 241d380 commit d1e993e
Show file tree
Hide file tree
Showing 7 changed files with 78 additions and 74 deletions.
140 changes: 72 additions & 68 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nextjs-react",
"version": "16.0.2",
"version": "17.0.0",
"private": true,
"scripts": {
"dev": "next dev",
Expand All @@ -14,7 +14,7 @@
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@weavy/uikit-react": "^16.0.2",
"@weavy/uikit-react": "^17.0.0",
"bcrypt": "^5.1.0",
"bootstrap": "^5.3.0-alpha1",
"next": "13.1.6",
Expand Down
Binary file modified prisma/dev.db
Binary file not shown.
2 changes: 1 addition & 1 deletion src/components/WeavyWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default function WeavyWrapper({ children }: Props) {
return (
<>
{status === "authenticated" &&
<WeavyProvider client={client}>
<WeavyProvider client={client} options={{ }}>
{children}
</WeavyProvider>
}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/weavy/acme-chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default function Chat({ uid, title }: Props) {
</Head>

<div className="contextual-app d-flex">
<ChatComponent uid={uid} />
<ChatComponent uid={uid} features={{ }} />
</div>
</>
)
Expand Down
2 changes: 1 addition & 1 deletion src/pages/weavy/acme-feed.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default function Feeds({uid, title}: Props) {
</Head>

<div className="container p-4">
<PostsComponent uid={uid} />
<PostsComponent uid={uid} features={{ }}/>
</div>
</>
)
Expand Down
2 changes: 1 addition & 1 deletion src/pages/weavy/acme-files.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default function Files({uid, title}: Props) {
</Head>

<div className="contextual-app d-flex">
<FilesComponent uid={uid} />
<FilesComponent uid={uid} features={{ }}/>
</div>
</>
)
Expand Down

0 comments on commit d1e993e

Please sign in to comment.