diff --git a/src/features/sync/components/Table.tsx b/src/features/sync/components/Table.tsx index 2673cbc..948cad4 100644 --- a/src/features/sync/components/Table.tsx +++ b/src/features/sync/components/Table.tsx @@ -32,6 +32,20 @@ const MappingTableStatus = ({ ) } +const MappingTableNoRecords = () => { + return ( + + +
+
+ Start by adding a mapping between an Assembly file channel and a Dropbox folder. +
+
+ + + ) +} + const MappingTableRow = () => { const { handleSyncStatusChange, @@ -56,7 +70,7 @@ const MappingTableRow = () => { return ( <> - {!!tempMapList.length && + {tempMapList.length ? ( tempMapList.map((mapItem, index) => ( @@ -140,7 +154,10 @@ const MappingTableRow = () => { )} - ))} + )) + ) : ( + + )} ) }