Fixed: added missing useCallback import #311

Closed
pramod.mahajan wants to merge 138 commits from hotfix/MasterActivity into main
Showing only changes of commit 41d3230325 - Show all commits

View File

@ -301,6 +301,12 @@ const ExpenseList = ({filters}) => {
</> </>
) )
)} )}
{!isInitialLoading && items.length === 0 && <tr rowSpan={8} style={{height:"200px"}}>
<td colSpan={8}>
No Expnese Found
</td>
</tr>}
</tbody> </tbody>
</table> </table>
</div> </div>