diff --git a/examples/jwt-auth/package.json b/examples/jwt-auth/package.json index ad311c717..0f09c132d 100644 --- a/examples/jwt-auth/package.json +++ b/examples/jwt-auth/package.json @@ -3,7 +3,7 @@ "version": "0.1.0", "license": "MIT", "scripts": { - "build": "next build", + "build-temp-disabled": "next build", "start": "next dev", "lint": "next lint" }, diff --git a/examples/jwt-auth/src/app/layout.tsx b/examples/jwt-auth/src/app/layout.tsx index a18b1e21c..2eef76140 100644 --- a/examples/jwt-auth/src/app/layout.tsx +++ b/examples/jwt-auth/src/app/layout.tsx @@ -2,7 +2,7 @@ import React, { PropsWithChildren } from "react"; import Script from "next/script"; import "../assets/style.css"; -import { MiroSDKInit } from "../components/SDKInit"; +import { MiroSDKInit } from "../components/SdkInit"; // Corrected the casing of the file name export default function RootLayout({ children }: PropsWithChildren) { return ( diff --git a/examples/terms-modal-banner-dynamodb/README.md b/examples/terms-modal-banner-dynamodb/README.md index 394c52a63..21a548137 100644 --- a/examples/terms-modal-banner-dynamodb/README.md +++ b/examples/terms-modal-banner-dynamodb/README.md @@ -73,7 +73,7 @@ Once you have finished all of the steps related to AWS in the [developer tutoria appName: Terms Modal Banner DynamoDB sdkVersion: SDK_V2 sdkUri: >- - https://dynamodb-miro-terms-banner-12345.s3.amazonaws.com/webassets/app.html + https:///webassets/app.html scopes: - identity:read ``` diff --git a/examples/terms-modal-banner-s3/README.md b/examples/terms-modal-banner-s3/README.md index 1c0a5a189..6f3fd1fe5 100644 --- a/examples/terms-modal-banner-s3/README.md +++ b/examples/terms-modal-banner-s3/README.md @@ -72,7 +72,7 @@ Once you have finished all of the steps related to AWS in the [developer tutoria appName: Terms Modal Banner S3 sdkVersion: SDK_V2 sdkUri: >- - https://s3-miro-terms-banner-12345.s3.amazonaws.com/webassets/app.html + https:///webassets/app.html scopes: - identity:read ``` diff --git a/examples/webhooks-manager/pages/index.tsx b/examples/webhooks-manager/pages/index.tsx index 5f97caedb..959c1b216 100644 --- a/examples/webhooks-manager/pages/index.tsx +++ b/examples/webhooks-manager/pages/index.tsx @@ -106,7 +106,9 @@ export default function Main({ }); window.miro.board.ui.on("icon:click", openPanel); - return () => window.miro.board.ui.off("icon:click", openPanel); + return () => { + window.miro.board.ui.off("icon:click", openPanel); + }; }, []); async function createWebhook(e: FormEvent) {