Showing message on the center of the page in Branches.

This commit is contained in:
Kartik Sharma 2025-11-26 18:02:26 +05:30
parent 6e57108f8e
commit 80717f0458

View File

@ -237,14 +237,17 @@ const ServiceBranch = () => {
!isError &&
(!data?.data || data.data.length === 0) && (
<tr>
<td
colSpan={columns.length + 1}
className="text-center py-12"
<td colSpan={columns.length + 1}>
<div
className="d-flex justify-content-center align-items-center"
style={{ height: "150px" }}
>
No Branch Found
</div>
</td>
</tr>
)}
</tbody>
</table>