Skip to content

Commit

Permalink
Fixed App Logo Branding (#228)
Browse files Browse the repository at this point in the history
  • Loading branch information
muktanshumishra24 authored Jul 12, 2024
1 parent d00ebdf commit d5156dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/appInfo.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { AppThemeInfo, AppInfo, Theme } from './typings'

function getImageUrls(appId: string, theme: Theme, gatewayUrl: string) {
const u = new URL(`/api/v2/app/${appId}/logo?type=${theme}`, gatewayUrl)
const u = new URL(`/api/v2/app/${appId}/logo/?type=${theme}`, gatewayUrl)
return {
horizontal: `${u.toString()}&orientation=horizontal`,
vertical: `${u.toString()}&orientation=vertical`,
Expand Down

0 comments on commit d5156dd

Please sign in to comment.