File size: 329 Bytes
cd99321
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { registerNoticeAction } from '../../components/SystemNotices/noticeActions.js';

// Opens the new-trip creation modal on DashboardPage via URL param.
// DashboardPage reads ?create=1 on mount and calls setShowForm(true).
registerNoticeAction('open:trip-create', ({ navigate }) => {
  navigate('/dashboard?create=1');
});