Skip to content

Commit

Permalink
Updates cache and removes dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
rosschapman committed Nov 6, 2024
1 parent 9aee08b commit 67e76fa
Show file tree
Hide file tree
Showing 9 changed files with 3 additions and 152 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: ${{ env.NODE_VERSION }}
- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: ~/.npm
key: npm-${{ hashFiles('package-lock.json') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: ${{ env.NODE_VERSION }}
- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: ~/.npm
key: npm-${{ hashFiles('package-lock.json') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: ${{ env.NODE_VERSION }}
- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: ~/.npm
key: npm-${{ hashFiles('package-lock.json') }}
Expand Down
43 changes: 0 additions & 43 deletions .github/workflows/publish-qa.yml

This file was deleted.

55 changes: 0 additions & 55 deletions .github/workflows/publish-release.yml

This file was deleted.

3 changes: 0 additions & 3 deletions app/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,6 @@ export const App = () => {
<title>{title}</title>
<meta property="og:url" content={siteUrl} />
<meta property="og:title" content={title} />

<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@sheltertechorg" />
<meta
property="og:description"
content="Get guided help finding food, housing, health resources and more in San Francisco"
Expand Down
42 changes: 0 additions & 42 deletions app/components/listing/ServiceAttribution.tsx

This file was deleted.

1 change: 0 additions & 1 deletion app/components/listing/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ export * from "./NotesList";
export * from "./OrganizationDetails";
export * from "./RelativeOpeningTime";
export * from "../ui/Cards/ServiceCard";
export * from "./ServiceAttribution";
export * from "./StreetViewImage";
export * from "./ContactInfoTableRows";
export * from "./TableOfLocationTimes";
5 changes: 0 additions & 5 deletions app/pages/ServiceListingPage/ServiceListingPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import qs from "qs";
import {
ActionBarMobile,
MapOfLocations,
ServiceAttribution,
ServiceCard,
ContactInfoTableRows,
} from "components/listing";
Expand Down Expand Up @@ -209,10 +208,6 @@ export const ServiceListingPage = () => {
<ReactMarkdown className="rendered-markdown" linkTarget="_blank">
{formattedLongDescription || ""}
</ReactMarkdown>
<ServiceAttribution
attribution={resource.source_attribution}
status={resource.status}
/>
</ListingInfoSection>

{details.length > 0 && (
Expand Down

0 comments on commit 67e76fa

Please sign in to comment.