+
curl
diff --git a/web-app/src/app/screens/Contribute.tsx b/web-app/src/app/screens/Contribute.tsx
index b9f51d599..162f4e449 100644
--- a/web-app/src/app/screens/Contribute.tsx
+++ b/web-app/src/app/screens/Contribute.tsx
@@ -151,19 +151,19 @@ export default function Contribute(): React.ReactElement {
information, transit providers should add a new feed on the catalogs
when there are major changes to their URL. Examples of changes
include:
-
-
The feed URL changes
-
- The feed is combined with several other feeds (for example:
- several providers' feeds are combined together)
-
-
- The feed is split from a combined/aggregated feed (for example:
- a provider whose GTFS was only available in an aggregate feed
- now has their own independent feed)
-
-
+
+
The feed URL changes
+
+ The feed is combined with several other feeds (for example:
+ several providers' feeds are combined together)
+
+
+ The feed is split from a combined/aggregated feed (for example: a
+ provider whose GTFS was only available in an aggregate feed now
+ has their own independent feed)
+
+
Who can contribute a feed?
@@ -241,61 +241,62 @@ export default function Contribute(): React.ReactElement {
Organizations:
-
-
Adelaide Metro
-
Bettendorf Transit
-
Bi-State Regional Commission
-
BreizhGo
-
Cal-ITP
-
Commerce Municipal Bus Lines
-
Corpus Christi Regional Transportation Authority
-
County of Hawai’i Mass Transit Agency
-
DART Delaware
-
- Department of Municipalities and Transport, Abu Dhabi, United
- Arab Emirates
-
>
diff --git a/web-app/src/app/screens/FeedSubmission/FeedSubmissionStepper.tsx b/web-app/src/app/screens/FeedSubmission/FeedSubmissionStepper.tsx
index 0eacc8d9a..b908fcf74 100644
--- a/web-app/src/app/screens/FeedSubmission/FeedSubmissionStepper.tsx
+++ b/web-app/src/app/screens/FeedSubmission/FeedSubmissionStepper.tsx
@@ -27,13 +27,13 @@ export default function FeedSubmissionStepper(): React.ReactElement {
return (
- {steps.map((label) => {
+ {steps.map((label, index) => {
const stepProps: { completed?: boolean } = {};
const labelProps: {
optional?: React.ReactNode;
} = {};
return (
-
+ {label}
);
diff --git a/web-app/src/app/screens/FeedSubmission/Form/index.tsx b/web-app/src/app/screens/FeedSubmission/Form/index.tsx
index 062eee4a4..9137a1989 100644
--- a/web-app/src/app/screens/FeedSubmission/Form/index.tsx
+++ b/web-app/src/app/screens/FeedSubmission/Form/index.tsx
@@ -111,7 +111,7 @@ export default function FeedSubmissionForm({
): void => {
const finalData = { ...formData, ...partialFormData };
setFormData(finalData);
- console.log('FINAL API CALL WITH', finalData);
+ // console.log('FINAL API CALL WITH', finalData);
// TODO: API call with finalData
// TODO: loading state of API call
// TODO: feed submitted page
diff --git a/web-app/src/app/screens/FeedSubmission/index.tsx b/web-app/src/app/screens/FeedSubmission/index.tsx
index f274daf0a..f134a3e8c 100644
--- a/web-app/src/app/screens/FeedSubmission/index.tsx
+++ b/web-app/src/app/screens/FeedSubmission/index.tsx
@@ -1,5 +1,4 @@
import * as React from 'react';
-import { useEffect } from 'react';
import { useSelector } from 'react-redux';
import {
Alert,
@@ -11,11 +10,7 @@ import {
colors,
} from '@mui/material';
import CheckIcon from '@mui/icons-material/Check';
-import {
- selectIsAnonymous,
- selectIsAuthenticated,
- selectUserProfile,
-} from '../../store/profile-selectors';
+import { selectIsAuthenticated } from '../../store/profile-selectors';
import FeedSubmissionStepper from './FeedSubmissionStepper';
import { useRemoteConfig } from '../../context/RemoteConfigProvider';
import Contribute from '../Contribute';
@@ -28,16 +23,7 @@ function Component(): React.ReactElement {
const [showLoginSuccess, setShowLoginSuccess] = React.useState(
location.state?.from === 'registration',
);
- const user = useSelector(selectUserProfile);
const isAuthenticated = useSelector(selectIsAuthenticated);
- const isAuthenticatedOrAnonymous =
- isAuthenticated || useSelector(selectIsAnonymous);
-
- useEffect(() => {
- if (isAuthenticatedOrAnonymous && user?.accessToken !== undefined) {
- console.log('User is authenticated or anonymous');
- }
- }, [isAuthenticatedOrAnonymous]);
return (
diff --git a/web-app/src/app/screens/FeedSubmissionFAQ.tsx b/web-app/src/app/screens/FeedSubmissionFAQ.tsx
index bcc01dc40..a0908c10d 100644
--- a/web-app/src/app/screens/FeedSubmissionFAQ.tsx
+++ b/web-app/src/app/screens/FeedSubmissionFAQ.tsx
@@ -183,19 +183,19 @@ export default function FeedSubmissionFAQ(): React.ReactElement {
information, transit providers should add a new feed on the
catalogs when there are major changes to their URL. Examples of
changes include:
-
-
The feed URL changes
-
- The feed is combined with several other feeds (for example:
- several providers' feeds are combined together)
-
-
- The feed is split from a combined/aggregated feed (for
- example: a provider whose GTFS was only available in an
- aggregate feed now has their own independent feed)
-
-
+
+
The feed URL changes
+
+ The feed is combined with several other feeds (for example:
+ several providers' feeds are combined together)
+
+
+ The feed is split from a combined/aggregated feed (for example:
+ a provider whose GTFS was only available in an aggregate feed
+ now has their own independent feed)
+