From 2d71c45eec0fa18e34061dbdd9fa758fbee619af Mon Sep 17 00:00:00 2001 From: Ariel Weinberger Date: Thu, 19 Oct 2023 19:50:51 -0700 Subject: [PATCH] fix(docs): types --- README.md | 2 +- apps/docs/components/DynamicCodeExample.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2b50d24..832f44f 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ # Usage -## [Check our interactive documentation](https://docs.unillm.ai) +## [✨ Check our interactive documentation ✨](https://docs.unillm.ai) ## 💬 Chat Completions diff --git a/apps/docs/components/DynamicCodeExample.tsx b/apps/docs/components/DynamicCodeExample.tsx index 3d93ced..6573574 100644 --- a/apps/docs/components/DynamicCodeExample.tsx +++ b/apps/docs/components/DynamicCodeExample.tsx @@ -68,7 +68,7 @@ type Props = { allowedProvider?: string; } -export function DynamicCodeExample({ children, defaultLLM, allowedProvider = null }: Props) { +export function DynamicCodeExample({ children, defaultLLM, allowedProvider }: Props) { const ref = useRef(); const setupRef = useRef(); const modelRef = useRef();