From 43cafdd5248f65363ec31bf24cc0b0971ad89b87 Mon Sep 17 00:00:00 2001 From: ascarbek Date: Sun, 9 Apr 2023 21:15:29 +0600 Subject: [PATCH] fix: change to url error --- .../src/appflowy_app/components/board/BoardUrlCell.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/appflowy_tauri/src/appflowy_app/components/board/BoardUrlCell.tsx b/frontend/appflowy_tauri/src/appflowy_app/components/board/BoardUrlCell.tsx index 940facef77..8f3bc82637 100644 --- a/frontend/appflowy_tauri/src/appflowy_app/components/board/BoardUrlCell.tsx +++ b/frontend/appflowy_tauri/src/appflowy_app/components/board/BoardUrlCell.tsx @@ -17,8 +17,8 @@ export const BoardUrlCell = ({ return ( <> - - {(data as URLCellDataPB).content || ''} + + {(data as URLCellDataPB)?.content || ''} );