Skip to content

Commit 7a4d8ca

Browse files
authored
fix: logo missing and billing scaffold condition (#45)
1 parent e52923a commit 7a4d8ca

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

templates/src/components/Navigation.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import React<%if eq (index .Params `userAuth`) "yes" %>, { useContext }<% end %> from 'react'
22
import { Link } from 'react-router-dom'
33
<%if eq (index .Params `userAuth`) "yes" %> import { AuthContext } from '../context/AuthContext' <% end %>
4-
import logo from '../logo.png'
54

65
import './Navigation.css'
76
<%if eq (index .Params `userAuth`) "yes" %>
@@ -73,7 +72,7 @@ function Navigation() {
7372
return (
7473
<nav className="app-nav">
7574
<Link to="/" className="app-nav-logo">
76-
<img src={logo} alt="logo" />
75+
<img src="./logo192.png" alt="logo" />
7776
</Link>
7877
<%if eq (index .Params `userAuth`) "yes" %>
7978
<NavLinks {...state}/><% else if eq (index .Params `userAuth`) "no" %><NavLinks /><% end %>

zero-module.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ conditions:
194194
data:
195195
- .circleci/
196196
- action: ignoreFile
197-
matchField: CIVendor
198-
whenValue: "github-actions"
197+
matchField: billingEnabled
198+
whenValue: "no"
199199
data:
200200
- src/pages/Billing

0 commit comments

Comments
 (0)