fix(style): rename the remaining AKButton import

This commit is contained in:
Leonard Kim 2017-11-09 14:20:50 -08:00 committed by yanas
parent c2901808ca
commit bff983d969
1 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
/* @flow */
import AKButton from '@atlaskit/button';
import Button from '@atlaskit/button';
import PropTypes from 'prop-types';
import React, { Component } from 'react';
@ -64,11 +64,11 @@ class InlineDialogFailure extends Component<*> {
{ t('inlineDialogFailure.msg') }
</div>
{ supportLinkElem }
<AKButton
<Button
className = 'inline-dialog-error-button'
onClick = { this.props.onRetry } >
{ t('inlineDialogFailure.retry') }
</AKButton>
</Button>
</div>
);
}