瀏覽代碼

Fix minor remaining linter errors after merge

Leszek Wiesner 4 年之前
父節點
當前提交
4b8758f781
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      pioneer/packages/app-explorer/src/SummarySession.tsx

+ 3 - 3
pioneer/packages/app-explorer/src/SummarySession.tsx

@@ -19,8 +19,8 @@ interface Props extends I18nProps {
   sessionInfo?: DerivedSessionInfo;
   withEra?: boolean;
   withSession?: boolean;
-  epochIndex?: u64,
-  currentEraStartSessionIndex?: SessionIndex
+  epochIndex?: u64;
+  currentEraStartSessionIndex?: SessionIndex;
 }
 
 function renderSession ({ sessionInfo, t, withSession = true }: Props): React.ReactNode {
@@ -89,6 +89,6 @@ export default translate(
   withCalls<Props>(
     ['derive.session.info', { propName: 'sessionInfo' }],
     ['query.babe.epochIndex', { propName: 'epochIndex' }],
-    ['query.staking.currentEraStartSessionIndex', { propName: 'currentEraStartSessionIndex'}]
+    ['query.staking.currentEraStartSessionIndex', { propName: 'currentEraStartSessionIndex' }]
   )(SummarySession)
 );