Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
teeteeteeteetee committed Nov 22, 2023
1 parent d6760cd commit b1dbbd9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions assets/templates/.debug.template.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ const getHost = (props, key) =>
<Host Name="PRLD" Port="4008" />
<Host Name="FLPR" Port="4009" />
<Host Name="DRWV" Port="4010" />
<Host Name="AUDT" Port="4011" />
</HostList>
</Extension>
`
Expand All @@ -41,6 +42,7 @@ module.exports = (props) =>
<Host Name="PRLD" Port="3008" />
<Host Name="FLPR" Port="3009" />
<Host Name="DRWV" Port="3010" />
<Host Name="AUDT" Port="3011" />
</HostList>
</Extension>
${getHosts(props).join('')}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,10 @@ export function setCustom({url}){

}

export function getIcon({ appId, className }) {
export function getIcon({ className, version }) {
// <img className="rounded-sm w-[60px] h-[60px]" src="../../assets/AEFT.png" />

let source;

return <img className={className}></img>;
return <img className={className} src={source}></img>;
}

0 comments on commit b1dbbd9

Please sign in to comment.