Skip to content

Commit

Permalink
fix: replace animated screenshots with a static screenshot (#2045)
Browse files Browse the repository at this point in the history
  • Loading branch information
benbrown committed Feb 24, 2020
1 parent 6ff0da3 commit 3424f78
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { TextField } from 'office-ui-fabric-react/lib/TextField';
import { StoreContext } from '../../../store';

import { styles } from './styles';
import processGif from './deploy-create-output.gif';
import processGif from './deploy-create-output.png';

export const DeployWizardStep2 = props => {
const { state } = useContext(StoreContext);
Expand Down Expand Up @@ -57,7 +57,7 @@ export const DeployWizardStep2 = props => {
<img
style={styles.gif}
src={processGif}
alt={formatMessage('Animation showing the command line tool output')}
alt={formatMessage('This image shows the command line tool output')}
/>
</StackItem>
</Stack>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { DialogFooter } from 'office-ui-fabric-react/lib/Dialog';
import { TextField } from 'office-ui-fabric-react/lib/TextField';

import { styles } from './styles';
import processGif from './deploy-deploy-output.gif';
import processGif from './deploy-deploy-output.png';

export const DeployWizardStep3 = props => {
const { closeModal, botValues } = props;
Expand Down Expand Up @@ -50,7 +50,7 @@ export const DeployWizardStep3 = props => {
<img
style={styles.gif}
src={processGif}
alt={formatMessage('Animation showing the command line tool output')}
alt={formatMessage('This image shows the command line tool output')}
/>
</StackItem>
</Stack>
Expand Down

0 comments on commit 3424f78

Please sign in to comment.