mirror of
https://github.com/jambonz/chrome-extension-dialer.git
synced 2026-01-25 02:08:05 +00:00
fixed
This commit is contained in:
@@ -85,15 +85,14 @@ export const CallHistoryItem = ({
|
||||
{dayjs(call.timeStamp).format("MMM D, hh:mm A")}
|
||||
</Text>
|
||||
</VStack>
|
||||
<Tooltip
|
||||
label={
|
||||
isSaved && call.isSaved ? "Delete" : call.isSaved ? "Unsaved" : "Save"
|
||||
}
|
||||
>
|
||||
<Tooltip label={isSaved && call.isSaved ? "Delete" : "Save"}>
|
||||
<IconButton
|
||||
aria-label="save recents"
|
||||
icon={isSaved && call.isSaved ? <Trash2 /> : <Save />}
|
||||
onClick={() => {
|
||||
if (!isSaved && call.isSaved) {
|
||||
return;
|
||||
}
|
||||
const settings = getSettings();
|
||||
if (settings.sipUsername) {
|
||||
isSaveCallHistory(
|
||||
|
||||
Reference in New Issue
Block a user