Skip to content

Commit

Permalink
fix last of endowment >> nonprofit text;
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey authored and Andrey committed Dec 11, 2023
1 parent f8c13af commit 3e58fff
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default function Options({ searchText, isDebouncing = false }: Props) {
}}
messages={{
loading: "loading options..",
error: "failed to get endowments",
error: "failed to get nonprofits",
empty: searchText ? `${searchText} not found` : "no options found",
}}
classes={{ container: "w-full text-sm p-2" }}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Admin/Sidebar/Header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default function Header() {
/>
</div>
<h5 className="text-sm font-bold truncate mt-2">
{profile?.name || "Endowment"}
{profile?.name || "Nonprofit"}
</h5>
<MyEndowments showEndowments={true} endowments={[]} />
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Application/Prompt.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export default function Prompt({ verdict, orgName, uuid }: Props) {

<h3 className="text-center text-2xl mb-2 leading-tight px-3 sm:px-8">
<div className="uppercase">{verdict}</div>
<div>Endowment</div>
<div>Nonprofit</div>
</h3>

<p className="px-6 pb-4 text-center text-gray-d1 dark:text-gray-l3 mt-4">
Expand Down

0 comments on commit 3e58fff

Please sign in to comment.