Browse Source

fix: remove unused duplicate version string

pull/2935/head
Gabe Kangas 3 years ago
parent
commit
aef81eec4c
No known key found for this signature in database
GPG Key ID: 4345B2060657F330
  1. 2
      web/interfaces/client-config.model.ts
  2. 1
      web/stories/ReadwriteChat.stories.tsx

2
web/interfaces/client-config.model.ts

@ -5,7 +5,6 @@ export interface ClientConfig { @@ -5,7 +5,6 @@ export interface ClientConfig {
offlineMessage?: string;
logo: string;
tags: string[];
version: string;
nsfw: boolean;
extraPageContent: string;
socialHandles: SocialHandle[];
@ -52,7 +51,6 @@ export function makeEmptyClientConfig(): ClientConfig { @@ -52,7 +51,6 @@ export function makeEmptyClientConfig(): ClientConfig {
offlineMessage: '',
logo: '',
tags: [],
version: '',
nsfw: false,
extraPageContent: '',
socialHandles: [],

1
web/stories/ReadwriteChat.stories.tsx

@ -33,7 +33,6 @@ const Page = () => { @@ -33,7 +33,6 @@ const Page = () => {
summary: '',
logo: '',
tags: [],
version: '',
nsfw: false,
extraPageContent: '',
socialHandles: [],

Loading…
Cancel
Save