Skip to content

Commit 4c4f513

Browse files
committed
fix(auth): fix issue during merge
1 parent fd74b32 commit 4c4f513

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ui/views/OpenPushRequests/components/PushesTable.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export default function PushesTable(props) {
2828
const [currentPage, setCurrentPage] = useState(1);
2929
const itemsPerPage = 5;
3030
const [searchTerm, setSearchTerm] = useState('');
31-
const openPush = (push) => navigate(`/admin/push/${push}`, { replace: true });
31+
const openPush = (push) => navigate(`/dashboard/push/${push}`, { replace: true });
3232

3333
useEffect(() => {
3434
const query = {};

0 commit comments

Comments
 (0)