
* Fix missing metadata and payment balance on unconfirmed orders * Update changelog with fix missing fields on order page Co-authored-by: Patryk Andrzejewski <vox3r69@gmail.com>
17 lines
310 B
TypeScript
17 lines
310 B
TypeScript
import { makeStyles } from "@saleor/macaw-ui";
|
|
|
|
export const useStyles = makeStyles(
|
|
theme => ({
|
|
date: {
|
|
marginBottom: theme.spacing(3),
|
|
},
|
|
header: {
|
|
display: "flex",
|
|
justifyContent: "space-between",
|
|
marginBottom: 0,
|
|
},
|
|
}),
|
|
{
|
|
name: "OrderDetailsPage",
|
|
},
|
|
);
|