Skip to content

Commit

Permalink
lint and typecheck fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nkolba committed Mar 28, 2022
1 parent 9af95d6 commit 29e16bf
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 7 deletions.
24 changes: 18 additions & 6 deletions directory/src/data/apps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ export const appData = [
{
intents: [],
icons: [{ icon: 'https://appd.kolbito.com/images/fdc3-logo.png' }],
images: [ {url:"https://appd.kolbito.com/demos/channel-manager/screen-1.png"}],
images: [
{ url: 'https://appd.kolbito.com/demos/channel-manager/screen-1.png' },
],
start_url: 'https://appd.kolbito.com/demos/channel-manager/',
appId: 'Channel-Manager',
description: 'View and manage context on all channels.',
Expand All @@ -26,7 +28,11 @@ export const appData = [
},
],
icons: [{ icon: 'https://www.tradingview.com/static/images/favicon.ico' }],
images: [ {url:"https://appd.kolbito.com/demos/tradingview-blotter/screen-1.png"}],
images: [
{
url: 'https://appd.kolbito.com/demos/tradingview-blotter/screen-1.png',
},
],
start_url: 'https://appd.kolbito.com/demos/tradingview-blotter/',
appId: 'TradingViewBlotter',
description: 'TradingView-based Blotter App',
Expand All @@ -45,7 +51,7 @@ export const appData = [
},
],
icons: [{ icon: 'https://newsapi.org/favicon-32x32.png' }],
images: [ {url:"https://appd.kolbito.com/demos/news-demo/screen-1.png"}],
images: [{ url: 'https://appd.kolbito.com/demos/news-demo/screen-1.png' }],
start_url: 'https://appd.kolbito.com/demos/news-demo/',
appId: 'News-Demo',
description: 'Demo fdc3 news feed using services from NewsAPI.org',
Expand All @@ -66,7 +72,9 @@ export const appData = [
icons: [
{ icon: 'https://appd.kolbito.com/demos/tradingview-chart/icon.png' },
],
images: [ {url:"https://appd.kolbito.com/demos/tradingview-chart/screen-1.png"}],
images: [
{ url: 'https://appd.kolbito.com/demos/tradingview-chart/screen-1.png' },
],
start_url: 'https://appd.kolbito.com/demos/tradingview-chart/',
appId: 'TradingViewChart',
description: 'Demo fdc3 chart using widgets from TradingView',
Expand All @@ -85,7 +93,9 @@ export const appData = [
},
],
icons: [{ icon: 'https://polygon.io/favicon.ico' }],
images: [ {url:"https://appd.kolbito.com/demos/ticker-demo/screen-1.png"}],
images: [
{ url: 'https://appd.kolbito.com/demos/ticker-demo/screen-1.png' },
],
start_url: 'https://appd.kolbito.com/demos/ticker-demo/',
appId: 'Ticker-Demo',
description: 'Demo fdc3 company information using services from Polygon.io',
Expand All @@ -98,7 +108,9 @@ export const appData = [
{
intents: [],
icons: [{ icon: 'https://appd.kolbito.com/images/fdc3-logo.png' }],
images: [ {url:"https://appd.kolbito.com/demos/ticker-grid/screen-1.png"}],
images: [
{ url: 'https://appd.kolbito.com/demos/ticker-grid/screen-1.png' },
],
start_url: 'https://appd.kolbito.com/demos/ticker-grid/',
appId: 'Ticker-Grid',
description: 'fdc3 enabled grid of the S&P 500',
Expand Down
2 changes: 1 addition & 1 deletion packages/main/src/listeners/fdc3Listeners.ts
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ _listeners.push({
console.log(
'check pending',
pending.context,
pending.context.type,
(pending.context ? pending.context.type : "no pending object"),
msg.data.type,
msg.data.id,
msg.data.type === undefined ||
Expand Down

0 comments on commit 29e16bf

Please sign in to comment.