Skip to content
This repository has been archived by the owner on Jul 9, 2019. It is now read-only.

Commit

Permalink
fixed routing order
Browse files Browse the repository at this point in the history
  • Loading branch information
richarddubay committed Dec 12, 2016
1 parent bfabf96 commit bd746f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions imports/pages/give/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ import TransferSchedules from "./schedules/Recover";
import Layout from "./Layout";

const Routes = [
{ path: "give/campaign/:name", component: Campaign.Template },
{ path: "give/history/:id", component: HistoryDetail.Details },
{ path: "give/saved-payments/edit/:id", component: EditSavedPayment.EditSavedPayment },
{ path: "give/schedules/:id", component: ScheduleDetails.Details },
{ path: "give/schedules/edit/:id", component: EditSchedule.EditSchedule },
{ path: "give/schedules/transfer", component: TransferSchedules.Template },
{ path: "give/schedules/:id", component: ScheduleDetails.Details },
{ path: "give/campaign/:name", component: Campaign.Template },
{ path: "give/history/:id", component: HistoryDetail.Details },
{
path: "give",
component: Layout,
Expand Down

0 comments on commit bd746f6

Please sign in to comment.