This commit is contained in:
Michael Bumann
2022-01-30 17:45:38 +01:00
parent 8bf8fb5cbf
commit c4765df3c9
2 changed files with 3 additions and 3 deletions

View File

@@ -18,7 +18,7 @@ export default function ProjectsSection() {
return (
<div className='mt-32 lg:mt-48'>
<ProjectsRow title={<>Hottest <MdLocalFireDepartment className='inline-block text-fire align-bottom scale-125 origin-bottom' /></>}
<ProjectsRow title={<>Newest <MdLocalFireDepartment className='inline-block text-fire align-bottom scale-125 origin-bottom' /></>}
categoryId="133123"
projects={data.newProjects} />
{data.allCategories.map(({ id, title, project, }) => {

View File

@@ -29,10 +29,10 @@ class _Wallet_Service {
}
catch (err: any) {
// Default error message
let message = `Couldn't connect wallet`;
let message = "Check out https://getalby.com to get a web enabled lightning wallet";
// If they didn't have a provider, point them to Joule
if (err.constructor === MissingProviderError) {
message = "Check out https://lightningjoule.com to get a WebLN provider";
message = "Check out https://getalby.com to get a web enabled lightning wallet";
}