+
diff --git a/src/Files.tsx b/src/Files.tsx
index c3abc02..748c5be 100644
--- a/src/Files.tsx
+++ b/src/Files.tsx
@@ -1,5 +1,6 @@
import {useGlobalStore} from './hooks/useGlobalStore';
import * as types from './types';
+import {plural} from './utils';
type FilesProps = {
files: types.FileData[]
@@ -11,13 +12,19 @@ export const Files: React.FC {sectionData.description} {section.description}
+ {error}
+
+ Loading
+
+
- {globalStore.getCommentsForFile(file.id).length + ' '}
- Comments
-
+ {numComments}
+ {' '}
+ {plural('Comment', numComments)}
+ {currentTitle}
- {section.title}
+
- {chordProgression.map((chord, index) =>
{numComments}
diff --git a/src/client/IClient.ts b/src/client/IClient.ts
index eb7694d..1b7e669 100644
--- a/src/client/IClient.ts
+++ b/src/client/IClient.ts
@@ -1,4 +1,4 @@
-import {CommentData, FullProjectData, ProjectData, SectionData} from '../types';
+import {CommentData, FullProjectData, SectionData} from '../types';
export interface IClient {
fetchFullDataForProject: (projectId: string) => Promise