Skip to content

Commit

Permalink
Remove vestigial sharedStateManagement
Browse files Browse the repository at this point in the history
  • Loading branch information
shepmaster committed Dec 1, 2023
1 parent b4636a2 commit ae4a1a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 23 deletions.
4 changes: 2 additions & 2 deletions ui/frontend/reducers/output/gist.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ import { jsonGet, jsonPost, routes } from '../../actions';
import { baseUrlSelector, codeSelector } from '../../selectors';
import RootState from '../../state';
import { Channel, Edition, Mode } from '../../types';
import { RequestsInProgress } from './sharedStateManagement';

const sliceName = 'output/gist';

const initialState: State = {
requestsInProgress: 0,
};

interface State extends RequestsInProgress {
interface State {
requestsInProgress: number;
id?: string;
url?: string;
code?: string;
Expand Down
21 changes: 0 additions & 21 deletions ui/frontend/reducers/output/sharedStateManagement.ts

This file was deleted.

0 comments on commit ae4a1a6

Please sign in to comment.