File size: 494 Bytes
3201ca6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | import { useTranslation } from "react-i18next";
import { I18nKey } from "#/i18n/declaration";
import { ConversationTabEmptyState } from "#/components/features/conversation/conversation-tab-empty-state";
import { DiffDrawerIcon } from "./diff-drawer-icon";
export function EmptyChangesMessage() {
const { t } = useTranslation("openhands");
return (
<ConversationTabEmptyState icon={<DiffDrawerIcon />}>
{t(I18nKey.DIFF_VIEWER$NO_CHANGES)}
</ConversationTabEmptyState>
);
}
|