Skip to content

Commit 685dd25

Browse files
Yu Jin KangYu Jin Kang
authored andcommitted
cleaned up launch additions
1 parent e6ca2fd commit 685dd25

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

src/app/components/Action.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import PropTypes from 'prop-types';
33

44
import { changeView, changeSlider } from '../actions/actions';
55

6-
// BUG FIX:
7-
// changeSlider should also respond to the click event on the div
6+
// Launch Feature: Figure out changeView vs changeSlider
7+
// Should we make the btn bigger instead and keep the functionality?
88

99
const Action = props => {
1010
const {

src/app/components/SwitchApp.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { useStoreContext } from '../store';
44
import { setTab } from '../actions/actions';
55

66

7-
// BUG FIX: Fix the dropdown styling to make it more distinguishable
7+
// Launch Feature: Fix the dropdown styling to make it more distinguishable
88

99
const SwitchAppDropdown = () => {
1010
const [{ currentTab, tabs }, dispatch] = useStoreContext();

src/app/containers/ActionContainer.jsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,7 @@ import Action from '../components/Action';
55
import { emptySnapshots } from '../actions/actions';
66
import { useStoreContext } from '../store';
77

8-
// MVP Feature: Include a dropdown functionality
9-
// to show stateful/functional/Context API differentiation
10-
// May want to add another child component to the container
11-
8+
// Launch: render a dropdown filterable list
129
function ActionContainer() {
1310
const [{ tabs, currentTab }, dispatch] = useStoreContext();
1411
const { snapshots, sliderIndex, viewIndex } = tabs[currentTab];

0 commit comments

Comments
 (0)