Skip to content

Commit

Permalink
🔨 minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
casperiv0 committed Nov 21, 2021
1 parent 69f9f7d commit 071e6c7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export const ManageBusinessTab = () => {
<Error>{errors.whitelisted}</Error>
</FormField>

<footer className="mt-5 flex justify-between">
<footer className="flex justify-between mt-5">
<Button
onClick={() => openModal(ModalIds.AlertDeleteBusiness)}
type="reset"
Expand Down
2 changes: 1 addition & 1 deletion packages/client/src/pages/admin/manage/businesses.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export default function ManageBusinesses({ businesses: data }: Props) {
<div>
<p className="my-3">
{t.rich("alert_deleteBusiness", {
name: tempValue && tempValue.name,
name: tempValue?.name ?? "",
span: (children) => {
return <span className="font-semibold">{children}</span>;
},
Expand Down
2 changes: 1 addition & 1 deletion packages/client/src/pages/admin/manage/units/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default function SupervisorPanelPage({ units }: Props) {

<h1 className="mb-4 text-3xl font-semibold">{t("Management.MANAGE_UNITS")}</h1>

<div className="w-full overflow-x-auto">
<div className="w-full mt-3 overflow-x-auto">
<table className="w-full overflow-hidden whitespace-nowrap max-h-64">
<thead>
<tr>
Expand Down

0 comments on commit 071e6c7

Please sign in to comment.