Remove details from API error prop type

`details` field has been removed from the SDK.
This commit is contained in:
Mikko Koski 2017-12-28 10:53:50 +02:00
parent 97251ff867
commit 02d6c96580

View file

@ -383,10 +383,6 @@ export const apiError = shape({
status: number.isRequired,
code: oneOf(ERROR_CODES).isRequired,
title: string.isRequired,
details: shape({
data: object,
msg: string,
}),
});
// Storable error prop type. (Error object should not be stored as it is.)